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-lower-case/dist.es2015/index.js.map

1 line
456 B
Plaintext

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