UNPKG
namillum
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Bubble Protocol SDK
github.com/ValentinaKohler/namillum
ValentinaKohler/namillum
namillum
/
needing-organisation
/
examples
/
scilla-boilerplate
/
src
/
utils
/
template.ts
10 lines
(7 loc)
•
187 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
*
as
ejs
from
"ejs"
;
export
interface
TemplateData
{
projectName
:
string
; }
export
function
render
(
content
:
string
,
data
:
TemplateData
) {
return
ejs.
render
(content, data); }