UNPKG
shubform
Version:
latest (0.0.1)
0.0.1
Shubform is a static website generator
shubform
/
dist
/
nativeComponents
/
wrapper.js
5 lines
•
212 B
JavaScript
View Raw
1
2
3
4
5
function
execute
(
data, componentHTML, style
) { componentHTML = componentHTML.
replace
(
/{{text}}/g
, data[
0
]); componentHTML = componentHTML.
replace
(
/{{class}}/g
, style[
'class'
]);
return
componentHTML; }