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.

ensure-integer.js 269B

123456789
  1. "use strict";
  2. var toShortString = require("../to-short-string-representation")
  3. , isInteger = require("./is-integer");
  4. module.exports = function (num) {
  5. if (!isInteger(num)) throw new TypeError(toShortString(num) + " is not a integer");
  6. return Number(num);
  7. };