mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-07-01 16:05:48 +08:00
5 lines
149 B
JavaScript
5 lines
149 B
JavaScript
import assertString from './util/assertString';
|
|
export default function isLowercase(str) {
|
|
assertString(str);
|
|
return str === str.toLowerCase();
|
|
} |