UNPKG

gibbon.js

Version:

Actor/Component system for use with pixi.js.

10 lines 256 B
export const isConstructor = (c) => { return (c.constructor !== undefined); }; /** * Confirms item contains a clone function. */ export const isClonable = (item) => { return typeof (item.clone) === 'function'; }; //# sourceMappingURL=types.js.map