UNPKG

221 BJavaScriptView Raw
1/**
2 * Returns a boolean indicating whether the string is upper case.
3 */
4export function isUpperCase(input) {
5 return input.toUpperCase() === input && input.toLowerCase() !== input;
6}
7//# sourceMappingURL=index.js.map
\No newline at end of file