UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

10 lines (7 loc) 269 B
"use strict"; var toShortString = require("../to-short-string-representation") , isInteger = require("./is-integer"); module.exports = function (num) { if (!isInteger(num)) throw new TypeError(toShortString(num) + " is not a integer"); return Number(num); };