mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-21 10:08:02 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
16
node_modules/es-abstract/es2016.js
generated
vendored
Normal file
16
node_modules/es-abstract/es2016.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
'use strict';
|
||||
|
||||
var ES2015 = require('./es2015');
|
||||
var assign = require('./helpers/assign');
|
||||
|
||||
var ES2016 = assign(assign({}, ES2015), {
|
||||
// https://github.com/tc39/ecma262/pull/60
|
||||
SameValueNonNumber: function SameValueNonNumber(x, y) {
|
||||
if (typeof x === 'number' || typeof x !== typeof y) {
|
||||
throw new TypeError('SameValueNonNumber requires two non-number values of the same type.');
|
||||
}
|
||||
return this.SameValue(x, y);
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = ES2016;
|
Loading…
Add table
Add a link
Reference in a new issue