CampfireAuth/node_modules/validator/es/lib/isLowercase.js
2025-03-19 21:59:49 +05:00

5 lines
149 B
JavaScript

import assertString from './util/assertString';
export default function isLowercase(str) {
assertString(str);
return str === str.toLowerCase();
}