Spaces:
Configuration error
Configuration error
File size: 128 Bytes
1b1c183 |
1 2 3 4 5 6 7 |
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});
|