radames's picture
first
eb9ca51
raw
history blame
No virus
128 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});