Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/core-js/internals/
Upload File :
Current File : //etc/kibana/node_modules/core-js/internals/this-number-value.js

var classof = require('../internals/classof-raw');

// `thisNumberValue` abstract operation
// https://tc39.github.io/ecma262/#sec-thisnumbervalue
module.exports = function (value) {
  if (typeof value != 'number' && classof(value) != 'Number') {
    throw TypeError('Incorrect invocation');
  }
  return +value;
};