wallet-core/node_modules/core-js/modules/$.to-index.js
2017-05-03 15:35:00 +02:00

7 lines
231 B
JavaScript

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