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

node_modules.core-js.modules._to-absolute-index.js Maven / Gradle / Ivy

The newest version!
var toInteger = require('./_to-integer');
var max = Math.max;
var min = Math.min;
module.exports = function (index, length) {
  index = toInteger(index);
  return index < 0 ? max(index + length, 0) : min(index, length);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy