Sha256: b88872d5a108c327a24157e5979fd848603f2f47b1f92c530d09e20e936b9e67
Contents?: true
Size: 312 Bytes
Versions: 47
Compression:
Stored size: 312 Bytes
Contents
"use strict"; var isNaturalValue = require("./is-natural-number-value") , toShortString = require("../to-short-string-representation"); module.exports = function (arg) { var num = Number(arg); if (!isNaturalValue(arg)) throw new TypeError(toShortString(arg) + " is not a natural number"); return num; };
Version data entries
47 entries across 47 versions & 3 rubygems