is-camel-case
text →
is-camel-case() → boolean
Returns true when the complete input is a camel-case identifier beginning with a letter. The initial letter is lowercase; subsequent Unicode letters, combining marks, and numbers may include uppercase acronym runs, as in httpServerURL. Returns false for null, empty, blank, punctuation, mixed separators, and leading, trailing, or repeated separators.
Parameters
This predicate has no parameters.
Examples
"firstName" | is-camel-case → #true
"first--name" | is-camel-case → #false
Kind: Predicate
Scope: text
Aliases: None