web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
309 B

  1. var classof = require('../internals/classof-raw');
  2. // `thisNumberValue` abstract operation
  3. // https://tc39.es/ecma262/#sec-thisnumbervalue
  4. module.exports = function (value) {
  5. if (typeof value != 'number' && classof(value) != 'Number') {
  6. throw TypeError('Incorrect invocation');
  7. }
  8. return +value;
  9. };