UNPKG
text-to-generate
Version:
latest (2.1.0)
2.1.0
2.0.0
1.0.5
1.0.0
Text Generator by Muhammad Fauzan
text-to-generate
/
lib
/
text-to-ascii.js
7 lines
(6 loc)
•
122 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
=
(
text
) =>
{
return
text .
split
(
""
) .
map
(
(
item
) =>
item.
charCodeAt
(
0
)) .
join
(
" "
); };