All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.to-positive-integer.js Maven / Gradle / Ivy

The newest version!
'use strict';
var toIntegerOrInfinity = require('../internals/to-integer-or-infinity');

var $RangeError = RangeError;

module.exports = function (it) {
  var result = toIntegerOrInfinity(it);
  if (result < 0) throw new $RangeError("The argument can't be less than 0");
  return result;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy