Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 243 Bytes

fxp.core.F.string.md

File metadata and controls

14 lines (10 loc) · 243 Bytes

F.string

    import fxp.core.F;

F.string.split :: String → String → Array(String)

Split a string using a separator.

Example:

    F.string.split(".", "1.2.3"); // == 'Maybe([1,2,3])'