"use strict";
var toShortString = require("../to-short-string-representation")
, isInteger = require("./is-integer");
module.exports = function (num) {
if (!isInteger(num)) thrownewTypeError(toShortString(num) + " is not a integer");
returnNumber(num);
};