This commit is contained in:
David Kale
2020-09-08 13:25:36 -04:00
parent e4246d2b5b
commit 91fcbb0108
4227 changed files with 416837 additions and 457884 deletions

18
node_modules/es-abstract/2018/NumberToString.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
var GetIntrinsic = require('../GetIntrinsic');
var $String = GetIntrinsic('%String%');
var Type = require('./Type');
// https://www.ecma-international.org/ecma-262/9.0/#sec-tostring-applied-to-the-number-type
module.exports = function NumberToString(m) {
if (Type(m) !== 'Number') {
throw new TypeError('Assertion failed: "m" must be a String');
}
return $String(m);
};