time-to-botec/js/node_modules/@stdlib/assert/is-capitalized/docs/repl.txt

26 lines
444 B
Plaintext
Raw Permalink Normal View History

{{alias}}( value )
Tests if a value is a string having an uppercase first character.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is a string with an uppercase first
character.
Examples
--------
> var bool = {{alias}}( 'Hello' )
true
> bool = {{alias}}( 'world' )
false
See Also
--------