UNPKG

356 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isUpperCase = void 0;
4/**
5 * Returns a boolean indicating whether the string is upper case.
6 */
7function isUpperCase(input) {
8 return input.toUpperCase() === input && input.toLowerCase() !== input;
9}
10exports.isUpperCase = isUpperCase;
11//# sourceMappingURL=index.js.map
\No newline at end of file