UNPKG
sweetpea
Version:
latest (1.1.2)
1.1.2
1.1.1
1.0.4
1.0.3
1.0.1
1.0.0
Signal and Web Component Enhanced Web Apps
github.com/catpea/sweetpea
catpea/sweetpea
sweetpea
/
src
/
plug-ins
/
interpolate
/
index.js
2 lines
(1 loc)
•
135 B
JavaScript
View Raw
1
2
export
default
function
interpolate
(
t, c
){
return
t.
replace
(
/\${([^}]+)}/g
,
(
m,p
)=>
p.
split
(
'.'
).
reduce
(
(
a,f
)=>
a?a[f]:
undefined
,c)??
''
);}