mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 09:56:46 +00:00
Fix.
This commit is contained in:
parent
596a6da241
commit
c1a589c5b6
7078 changed files with 1882834 additions and 319 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