Fork of is-lower-case with added locale support
npm install @compwright/is-lower-case[![Build status][travis-image]][travis-url]



Check if a string is lower case.
Forked from blakeembrey/is-lower-case, with the following improvements:
* Removed unnecessary dependencies
* Added locale support
```
npm install @compwright/is-lower-case --save
`javascript
const isLowerCase = require('@compwright/is-lower-case')
isLowerCase('STRING') // false
isLowerCase('String') // false
isLowerCase('string') // true
// Returns undefined for non-strings
isLowerCase(null) // undefined
`
Locale support:
`javascript``
isLowerCase('STRİNG', 'tr') // false
Includes a TypeScript definition.
MIT
[travis-image]: https://img.shields.io/travis/compwright/is-lower-case.svg?style=flat
[travis-url]: https://travis-ci.org/compwright/is-lower-case