UNPKG

js-ord

Version:

Get the ASCII value of alphanumeric characters

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