UNPKG

250 BJavaScriptView Raw
1/**
2 * Gets zero-based index.
3 * @param x an array
4 * @param i index (-ve: from right) (0)
5 */
6function index(x, i = 0) {
7 return i < 0 ? Math.max(x.length + i, 0) : Math.min(i, x.length);
8}
9export default index;
10//# sourceMappingURL=index!.js.map
\No newline at end of file