'use strict';varGetIntrinsic=require('../GetIntrinsic');var$String=GetIntrinsic('%String%');varType=require('./Type');// https://www.ecma-international.org/ecma-262/9.0/#sec-tostring-applied-to-the-number-typemodule.exports=functionNumberToString(m){if(Type(m)!=='Number'){thrownewTypeError('Assertion failed: "m" must be a String');}return$String(m);};