export function split(separator, str){ if (arguments.length === 1) return _str => split(separator, _str) return str.split(separator) }