1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-node synced 2025-06-20 02:20:26 +02:00
This commit is contained in:
Danny McCormick 2019-08-06 18:29:44 -04:00
parent fc9ff49b90
commit 5273d0df9c
391 changed files with 79850 additions and 45 deletions

14
node_modules/deprecation/dist-src/index.js generated vendored Normal file
View file

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