Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions

18
node_modules/capture-stack-trace/index.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
'use strict';
module.exports = Error.captureStackTrace || function (error) {
var container = new Error();
Object.defineProperty(error, 'stack', {
configurable: true,
get: function getStack() {
var stack = container.stack;
Object.defineProperty(this, 'stack', {
value: stack
});
return stack;
}
});
};

82
node_modules/capture-stack-trace/package.json generated vendored Normal file
View File

@ -0,0 +1,82 @@
{
"_args": [
[
"capture-stack-trace@^1.0.0",
"C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\create-error-class"
]
],
"_from": "capture-stack-trace@>=1.0.0-0 <2.0.0-0",
"_id": "capture-stack-trace@1.0.0",
"_inCache": true,
"_location": "/capture-stack-trace",
"_npmUser": {
"email": "floatdrop@gmail.com",
"name": "floatdrop"
},
"_npmVersion": "1.4.28",
"_phantomChildren": {},
"_requested": {
"name": "capture-stack-trace",
"raw": "capture-stack-trace@^1.0.0",
"rawSpec": "^1.0.0",
"scope": null,
"spec": ">=1.0.0-0 <2.0.0-0",
"type": "range"
},
"_requiredBy": [
"/create-error-class"
],
"_resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz",
"_shasum": "4a6fa07399c26bba47f0b2496b4d0fb408c5550d",
"_shrinkwrap": null,
"_spec": "capture-stack-trace@^1.0.0",
"_where": "C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\create-error-class",
"author": {
"email": "floatdrop@gmail.com",
"name": "Vsevolod Strukchinsky",
"url": "github.com/floatdrop"
},
"bugs": {
"url": "https://github.com/floatdrop/capture-stack-trace/issues"
},
"dependencies": {},
"description": "Error.captureStackTrace ponyfill",
"devDependencies": {
"mocha": "*"
},
"directories": {},
"dist": {
"shasum": "4a6fa07399c26bba47f0b2496b4d0fb408c5550d",
"tarball": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"gitHead": "eb46ce326fa9074b6ce17a94d4b76500321a331f",
"homepage": "https://github.com/floatdrop/capture-stack-trace",
"installable": true,
"keywords": [
"Error",
"captureStackTrace"
],
"license": "MIT",
"maintainers": [
{
"name": "floatdrop",
"email": "floatdrop@gmail.com"
}
],
"name": "capture-stack-trace",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/floatdrop/capture-stack-trace"
},
"scripts": {
"test": "mocha"
},
"version": "1.0.0"
}

36
node_modules/capture-stack-trace/readme.md generated vendored Normal file
View File

@ -0,0 +1,36 @@
# capture-stack-trace [![Build Status](https://travis-ci.org/floatdrop/capture-stack-trace.svg?branch=master)](https://travis-ci.org/floatdrop/capture-stack-trace)
> Ponyfill for Error.captureStackTrace
## Install
```
$ npm install --save capture-stack-trace
```
## Usage
```js
var captureStackTrace = require('capture-stack-trace');
captureStackTrace({});
// => {stack: ...}
```
## API
### captureStackTrace(error)
#### error
*Required*
Type: `Object`
Target Object, that will recieve stack property.
## License
MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop)