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