Firebase Update
This commit is contained in:
18
express-server/node_modules/capture-stack-trace/index.js
generated
vendored
Normal file
18
express-server/node_modules/capture-stack-trace/index.js
generated
vendored
Normal 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;
|
||||
}
|
||||
});
|
||||
};
|
21
express-server/node_modules/capture-stack-trace/license
generated
vendored
Normal file
21
express-server/node_modules/capture-stack-trace/license
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
61
express-server/node_modules/capture-stack-trace/package.json
generated
vendored
Normal file
61
express-server/node_modules/capture-stack-trace/package.json
generated
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
{
|
||||
"_from": "capture-stack-trace@^1.0.0",
|
||||
"_id": "capture-stack-trace@1.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==",
|
||||
"_location": "/capture-stack-trace",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "capture-stack-trace@^1.0.0",
|
||||
"name": "capture-stack-trace",
|
||||
"escapedName": "capture-stack-trace",
|
||||
"rawSpec": "^1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/create-error-class"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
|
||||
"_shasum": "a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d",
|
||||
"_spec": "capture-stack-trace@^1.0.0",
|
||||
"_where": "D:\\Desktop\\Git\\Firebase\\SmartShopperFirebase\\node_modules\\create-error-class",
|
||||
"author": {
|
||||
"name": "Vsevolod Strukchinsky",
|
||||
"email": "floatdrop@gmail.com",
|
||||
"url": "github.com/floatdrop"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/floatdrop/capture-stack-trace/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "Error.captureStackTrace ponyfill",
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/floatdrop/capture-stack-trace#readme",
|
||||
"keywords": [
|
||||
"Error",
|
||||
"captureStackTrace"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "capture-stack-trace",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/floatdrop/capture-stack-trace.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "1.0.1"
|
||||
}
|
36
express-server/node_modules/capture-stack-trace/readme.md
generated
vendored
Normal file
36
express-server/node_modules/capture-stack-trace/readme.md
generated
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
# capture-stack-trace [](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)
|
Reference in New Issue
Block a user