Skip to content

Latest commit

 

History

History
91 lines (79 loc) · 2.91 KB

File metadata and controls

91 lines (79 loc) · 2.91 KB

Function: StringEvery

Tests a string that all elements meet the specified criteria

Method Signature

StringEvery(list=[string], callback=[function:Predicate], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean], parallel=[boolean], maxThreads=[integer])

Arguments

Argument Type Required Description Default
list string true
callback function:Predicate true The callback to use for the test
delimiter string false ,
includeEmptyFields boolean false false
multiCharacterDelimiter boolean false true
parallel boolean false false
maxThreads integer false

Examples

Related