mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 16:13:18 +00:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
var toInteger = require('../internals/to-integer');
|
|
|
|
module.exports = function (it) {
|
|
var result = toInteger(it);
|
|
if (result < 0) throw RangeError("The argument can't be less than 0");
|
|
return result;
|
|
};
|