This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/is-upper-case/dist/index.js.map

1 line
466 B
Plaintext

{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,SAAgB,WAAW,CAAC,KAAa;IACvC,OAAO,KAAK,CAAC,WAAW,EAAE,KAAK,KAAK,IAAI,KAAK,CAAC,WAAW,EAAE,KAAK,KAAK,CAAC;AACxE,CAAC;AAFD,kCAEC","sourcesContent":["/**\n * Returns a boolean indicating whether the string is upper case.\n */\nexport function isUpperCase(input: string) {\n return input.toUpperCase() === input && input.toLowerCase() !== input;\n}\n"]}