##// END OF EJS Templates
Added tag v1.2.8 for changeset 367f8caa5bf8
Added tag v1.2.8 for changeset 367f8caa5bf8

File last commit:

r79:e5bb5e80ce96 v1.2.3 default
r90:77da935ee870 default
Show More
DjxFragment.ts
6 lines | 348 B | video/mp2t | TypeScriptLexer
/ djx / src / main / ts / tsx / DjxFragment.ts
/** Special functional component used to create a document fragment */
export function DjxFragment({ children }: { children?: Node | Node[] }) {
const fragment = document.createDocumentFragment();
if (children)
(children instanceof Array ? children : [children]).forEach(child => fragment.appendChild(child));
return fragment;
}