mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 18:35:17 +00: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,
|
||
|
});
|