UNPKG

911 BMarkdownView Raw
1# Is Lower Case
2
3[![NPM version][npm-image]][npm-url]
4[![NPM downloads][downloads-image]][downloads-url]
5[![Bundle size][bundlephobia-image]][bundlephobia-url]
6
7> Returns `true` if the string is lower case only.
8
9## Installation
10
11```
12npm install is-lower-case --save
13```
14
15## Usage
16
17```js
18import { isLowerCase } from "is-lower-case";
19
20isLowerCase("string"); //=> true
21isLowerCase("dot.case"); //=> true
22isLowerCase("PascalCase"); //=> false
23isLowerCase("version 1.2.10"); //=> true
24```
25
26## License
27
28MIT
29
30[npm-image]: https://img.shields.io/npm/v/is-lower-case.svg?style=flat
31[npm-url]: https://npmjs.org/package/is-lower-case
32[downloads-image]: https://img.shields.io/npm/dm/is-lower-case.svg?style=flat
33[downloads-url]: https://npmjs.org/package/is-lower-case
34[bundlephobia-image]: https://img.shields.io/bundlephobia/minzip/is-lower-case.svg
35[bundlephobia-url]: https://bundlephobia.com/result?p=is-lower-case