UNPKG

js-ord

Version:

Get the ASCII value of alphanumeric characters

13 lines (12 loc) 283 B
const isLower = string => { try { if (typeof string === 'string') { return string === string.toLowerCase() || false } else{ return 'Invalid format. Expected string' } } catch (error) { throw new Error(error) } } module.exports = isLower