1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Create node_modules folder

This commit is contained in:
Minionguyjpro
2023-07-08 08:34:15 +00:00
parent beccd32062
commit 19e95e7930
416 changed files with 96683 additions and 0 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';
}
}