ComfyUI / tests-ui /utils /nopProxy.js
brunvelop's picture
a
1abbc12
raw
history blame contribute delete
128 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});