UNPKG

@khashi/stringer

Version:
1 lines 307 B
function isUpperCase(r){if("string"!=typeof r)throw new TypeError("stringer wants a string!");return r===r.toUpperCase()}function isLowerCase(r){if("string"!=typeof r)throw new TypeError("stringer wants a string!");return r===r.toLowerCase()}module.exports={isUpperCase:isUpperCase,isLowerCase:isLowerCase};