mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 13:59:54 +00:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
export const nop = new Proxy(function () {}, {
|
|
get: () => nop,
|
|
set: () => true,
|
|
apply: () => nop,
|
|
construct: () => nop
|
|
})
|