UNPKG

js-ord

Version:

Get the ASCII value of alphanumeric characters

13 lines (12 loc) 255 B
const ord = (string) => { try { if(typeof string === 'string'){ return string.charCodeAt() } else{ return 'Invalid format. Expected string.' } } catch (error) { throw new Error(error) } } module.exports = ord