Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 591B

123456789101112131415161718192021222324252627282930313233343536
  1. # capture-stack-trace [![Build Status](https://travis-ci.org/floatdrop/capture-stack-trace.svg?branch=master)](https://travis-ci.org/floatdrop/capture-stack-trace)
  2. > Ponyfill for Error.captureStackTrace
  3. ## Install
  4. ```
  5. $ npm install --save capture-stack-trace
  6. ```
  7. ## Usage
  8. ```js
  9. var captureStackTrace = require('capture-stack-trace');
  10. captureStackTrace({});
  11. // => {stack: ...}
  12. ```
  13. ## API
  14. ### captureStackTrace(error)
  15. #### error
  16. *Required*
  17. Type: `Object`
  18. Target Object, that will recieve stack property.
  19. ## License
  20. MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop)