UNPKG

js-ord

Version:

Get the ASCII value of alphanumeric characters

13 lines (12 loc) 265 B
const ordFrom = (int) => { try { if (typeof int === 'number') { return String.fromCharCode(int) } else { return 'Invalid format. Expected integer' } } catch (error) { throw new Error(error) } } module.exports = ordFrom