UNPKG

@phaserjs/phaser

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