UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

6 lines (4 loc) 140 B
export function split(separator, str){ if (arguments.length === 1) return _str => split(separator, _str) return str.split(separator) }