Skip to main content
Module

x/rambda/split.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function split(separator, str){ if (arguments.length === 1) return _str => split(separator, _str)
return str.split(separator)}