ComfyUI/tests-ui/utils/nopProxy.js
2023-10-11 21:32:13 +01:00

7 lines
128 B
JavaScript

export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});