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