mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-12 21:04:11 +08:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
|
|
export const nop = new Proxy(function () {}, {
|
||
|
|
get: () => nop,
|
||
|
|
set: () => true,
|
||
|
|
apply: () => nop,
|
||
|
|
construct: () => nop,
|
||
|
|
});
|