UNPKG
js-ord
Version:
latest (4.2.1)
4.2.1
4.2.0
4.1.1
4.1.0
4.0.1
4.0.0
3.0.0
2.0.0
Get the ASCII value of alphanumeric characters
github.com/blossom-babs/ord
blossom-babs/ord
js-ord
/
src
/
convertToASCII.js
13 lines
(12 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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