UNPKG

@surface/custom-element

Version:

Provides support of directives and data binding on custom elements.

7 lines (6 loc) 192 B
export default function commentFactory(value) { return () => { const node = document.createComment(value); return [node, () => ({ dispose: () => void 0 })]; }; }