mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
* Merge 2 npm repos * Install ts-jest * Update jestconfig * Fix jest types * jest fix * Fix babel config ref issue * Fix import * Fix import meta issue * fix generate * Skip multi-user tests
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
export const nop = new Proxy(function () {}, {
|
|
get: () => nop,
|
|
set: () => true,
|
|
apply: () => nop,
|
|
construct: () => nop,
|
|
});
|