UNPKG

svelte-phaser

Version:

Create Phaser 3 games with Svelte 3

12 lines 284 B
/** * Returns true if any of the values are not undefined */ export function shouldApplyProps(...args) { for (const arg of args) { if (typeof arg !== 'undefined') { return true; } } return false; } //# sourceMappingURL=shouldApplyProps.js.map