UNPKG

@phaserjs/phaser

Version:
8 lines (7 loc) 178 B
import { AddChild } from "./AddChild"; export function AddChildren(parent, ...children) { children.forEach((child) => { AddChild(parent, child); }); return children; }