@stdlib/assert
Version:
Standard assertion utilities.
24 lines (18 loc) • 396 B
Plain Text
{{alias}}( value )
Tests if a value is a camelcase string.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is a camelcase string.
Examples
--------
> var bool = {{alias}}( 'helloWorld' )
true
> bool = {{alias}}( 'hello world' )
false
See Also
--------