flatcherlee's picture
Upload 273 files
932ae62 verified
raw
history blame
134 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});