summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/2018/NumberToString.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/2018/NumberToString.js')
-rw-r--r--node_modules/es-abstract/2018/NumberToString.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/es-abstract/2018/NumberToString.js b/node_modules/es-abstract/2018/NumberToString.js
deleted file mode 100644
index 741727c..0000000
--- a/node_modules/es-abstract/2018/NumberToString.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict';
-
-var GetIntrinsic = require('../GetIntrinsic');
-
-var $String = GetIntrinsic('%String%');
-var $TypeError = GetIntrinsic('%TypeError%');
-
-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);
-};
-