Files
alfresco-ng2-components/react-app/node_modules/core-js/modules/$.to-index.js
Mario Romano 29df96a085 react app
2016-04-06 17:52:19 +01: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);
};