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