1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-node synced 2025-06-25 20:58:02 +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

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 };