Initial pass on script Action

This commit is contained in:
Jonathan Clem 2019-08-29 18:46:42 -04:00
commit 8080ea76f3
No known key found for this signature in database
GPG key ID: 48C5B22E9FD6E80F
363 changed files with 77611 additions and 0 deletions

16
node_modules/deprecation/dist-web/index.js generated vendored Normal file
View file

@ -0,0 +1,16 @@
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';
}
}
export { Deprecation };