mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-10 21:32:19 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
11
node_modules/yargs/lib/yerror.js
generated
vendored
Normal file
11
node_modules/yargs/lib/yerror.js
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
'use strict'
|
||||
function YError (msg) {
|
||||
this.name = 'YError'
|
||||
this.message = msg || 'yargs error'
|
||||
Error.captureStackTrace(this, YError)
|
||||
}
|
||||
|
||||
YError.prototype = Object.create(Error.prototype)
|
||||
YError.prototype.constructor = YError
|
||||
|
||||
module.exports = YError
|
Loading…
Add table
Add a link
Reference in a new issue