Freak-ppa's picture
Upload 388 files
8d4cfef verified
raw
history blame
134 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});