UNPKG

ramda

Version:

A practical functional library for JavaScript programmers.

5 lines 130 B
function _nth(offset, list) { var idx = offset < 0 ? list.length + offset : offset; return list[idx]; } module.exports = _nth;