UNPKG
sveltejs-show
Version:
latest (1.0.0)
1.0.0
Just like the v-show in vuejs
github.com/Lete114/SvelteJS-Showz
Lete114/SvelteJS-Showz
sveltejs-show
/
dist
/
index.js
8 lines
(7 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
default
function
show
(
node,
bool
)
{
update
(
bool
);
function
update
(
bool
)
{ node.style.display =
bool
?
'none'
:
''
; }
return
{ update }; }