UNPKG
leopard-template
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
0.0.1
a simple HTML template engine
github.com/stop2stare/leopard
stop2stare/leopard
leopard-template
/
src
/
utils.js
8 lines
(7 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
exports
.
escape
=
function
(
str
) {
return
String
(str) .
replace
(
/&/g
,
'&'
) .
replace
(
/</g
,
'<'
) .
replace
(
/>/g
,
'>'
) .
replace
(
/"/g
,
'"'
) }