forked from mirror/Riven
1
0
Fork 0
Riven/riven/srcgen/node_modules/is-lower-case
Mingwei Samuel 74eb5fa045 Update example proxy for v2, use workspaces.
- `example/proxy` is new folder for `example_proxy`.
- `riven` is new folder for the main riven lib.
- Updated metadata to be an array and include HTTP method.
2021-09-09 14:31:39 -07:00
..
LICENSE Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
README.md Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
is-lower-case.d.ts Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
is-lower-case.js Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
package.json Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00

README.md

Is Lower Case

NPM version NPM downloads Build status Test coverage

Check if a string is lower case.

Installation

npm install is-lower-case --save

Usage

var isLowerCase = require('is-lower-case')

isLowerCase('string') //=> true
isLowerCase('String') //=> false
isLowerCase('STRING') //=> false

Typings

Includes a TypeScript definition.

License

MIT