summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/isLowercase.js
blob: 034785646730c8b8377994a289d37fc25a15a5d3 (plain)
1
2
3
4
5
import assertString from './util/assertString';
export default function isLowercase(str) {
  assertString(str);
  return str === str.toLowerCase();
}