@khashi/stringer
Version:
Convert your string
1 lines • 299 B
JavaScript
function toUpperCase(r){if("string"!=typeof r)throw new TypeError("stringer wants a string!");return r.toUpperCase()}function toLowerCase(r){if("string"!=typeof r)throw new TypeError("stringer wants a string!");return r.toLowerCase()}module.exports={toLowerCase:toLowerCase,toUpperCase:toUpperCase};