UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

11 lines (9 loc) 217 B
'use strict'; function getNormalizedIndex(index, length, loop) { if (index && loop) { index = index % length; } if (index < 0) index = length + index; return index; } module.exports = getNormalizedIndex;