time-to-botec/js/node_modules/@stdlib/assert/is-lowercase/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

2.2 KiB

isLowercase

Test if a value is a lowercase string.

Usage

var isLowercase = require( '@stdlib/assert/is-lowercase' );

isLowercase( value )

Tests if a value is a lowercase string.

var bool = isLowercase( 'salt and light' );
// returns true

bool = isLowercase( 'HELLO' );
// returns false

bool = isLowercase( 'World' );
// returns false

Notes

  • This function validates that a value is a string. For all other types, the function returns false.

Examples

var isLowercase = require( '@stdlib/assert/is-lowercase' );

var bool = isLowercase( 'hello' );
// returns true

bool = isLowercase( '' );
// returns false

bool = isLowercase( 'Hello' );
// returns false

bool = isLowercase( 'HELLO' );
// returns false

CLI

Usage

Usage: is-lowercase [options] [<string>]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ is-lowercase BEEP
false

To use as a standard stream,

$ echo -n 'boop' | is-lowercase
true