UNPKG

263 BJavaScriptView Raw
1/**
2 * Returns a boolean indicating whether the string is lower case.
3 */
4export function isLowerCase(input, locale) {
5 return (input.toLocaleLowerCase(locale) === input &&
6 input !== input.toLocaleUpperCase(locale));
7}
8//# sourceMappingURL=index.js.map
\No newline at end of file