Files
nothoughts/node_modules/pixi.js/lib/scene/container/utils/assignWithIgnore.mjs
2025-08-04 18:57:35 +02:00

12 lines
276 B
JavaScript

"use strict";
function assignWithIgnore(target, options, ignore = {}) {
for (const key in options) {
if (!ignore[key] && options[key] !== void 0) {
target[key] = options[key];
}
}
}
export { assignWithIgnore };
//# sourceMappingURL=assignWithIgnore.mjs.map