UNPKG
text-mode
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
Character based display for the DOM
github.com/nrkn/text-node
nrkn/text-mode
text-mode
/
src
/
string-inject.js
8 lines
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
function
(
template
){
return
eval
(
"(function(o){return '"
+ template.
replace
(
/'/g
,
"\\'"
) .
replace
(
/<%=\s*/g
,
"'+o."
) .
replace
(
/\s*%>/g
,
"+'"
) +
"'})"
); }