UNPKG
pon-shared-pon.universe.frontend.shared.componentlibrary
Version:
latest (1.0.0)
1.0.0
shared components for Pon Universe
pon-shared-pon.universe.frontend.shared.componentlibrary
/
packages
/
pu-helper-html-encode
/
lib
/
pu-helper-html-encode.js
7 lines
(6 loc)
•
175 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
string
=> {
if
(
typeof
string
!==
"string"
) {
return
false
; }
return
[...
string
].
reduce
(
(
acc, curr
) =>
`
${acc}
&#
${curr.charCodeAt()}
;`
,
""
); };