UNPKG

moy-fp

Version:
11 lines (8 loc) 180 B
import curry from '../Function/curry' /** * Number -> [a] -> a | undefined */ const nthList = curry( (n, list) => list[n >= 0 ? n : n + list.length] ) export default nthList