@wtasnorg/node-lib / fieldsFuncString
fieldsFuncString(
s,f):string[]
Defined in: src/strings.ts:369
FieldsFunc splits the string s at each run of code points c satisfying f(c) and returns an array of slices of s.
string
Input string.
(_ch) => boolean
Predicate; split at runs of characters satisfying f.
string[]
Array of fields.