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