mirror of
https://code.forgejo.org/actions/setup-node
synced 2025-06-25 20:58:02 +02:00
Add auth
This commit is contained in:
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
16
node_modules/deprecation/dist-web/index.js
generated
vendored
Normal 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 };
|
Loading…
Add table
Add a link
Reference in a new issue