webhook-action/node_modules/es-abstract/2018/NumberToString.js

18 lines
400 B
JavaScript
Raw Normal View History

'use strict';
var GetIntrinsic = require('get-intrinsic');
var $String = GetIntrinsic('%String%');
2024-03-28 02:00:41 +00:00
var $TypeError = require('es-errors/type');
2022-11-10 10:43:16 +00:00
// https://262.ecma-international.org/9.0/#sec-tostring-applied-to-the-number-type
module.exports = function NumberToString(m) {
2024-03-28 02:00:41 +00:00
if (typeof m !== 'number') {
throw new $TypeError('Assertion failed: "m" must be a String');
}
return $String(m);
};