UNPKG

ramda

Version:

A practical functional library for JavaScript programmers.

4 lines 122 B
export default function _nth(offset, list) { var idx = offset < 0 ? list.length + offset : offset; return list[idx]; }