build(deps): commit production deps

This commit is contained in:
marocchino 2019-11-21 09:59:42 +09:00
parent cb9470fc12
commit e4492afca8
No known key found for this signature in database
GPG key ID: AFF521DBDB122570
450 changed files with 123635 additions and 2 deletions

20
node_modules/deprecation/dist-node/index.js generated vendored Normal file
View file

@ -0,0 +1,20 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
class Deprecation extends Error {
constructor(message) {
super(message); // Maintains proper stack trace (only available on V8)
/* istanbul ignore next */
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = 'Deprecation';
}
}
exports.Deprecation = Deprecation;