UNPKG
ent
Version:
latest (2.2.2)
v0-backport (0.0.8)
2.2.2
2.2.1
2.2.0
2.1.1
2.1.0
2.0.0
1.0.0
0.1.0
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Encode and decode HTML entities
github.com/ljharb/ent
ljharb/ent
ent
/
examples
/
simple.js
6 lines
(4 loc)
•
133 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
;
var
ent =
require
(
'ent'
);
console
.
log
(ent.
encode
(
'<span>©moo</span>'
));
console
.
log
(ent.
decode
(
'π & ρ'
));