ilya94prok's picture
Upload 400 files
97b9880 verified
raw
history blame
No virus
134 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});