UNPKG

sveltejs-show

Version:
8 lines (7 loc) 176 B
export default function show(node, bool) { update(bool); function update(bool) { node.style.display = bool ? 'none' : ''; } return { update }; }