UNPKG

moy-fp

Version:
11 lines (8 loc) 193 B
import curry from '../Function/curry' /** * Number -> String -> String */ const nthString = curry( (n, string) => string.charAt(n >= 0 ? n : n + string.length) ) export default nthString