Qdssa's picture
Upload 269 files
0035f04 verified
raw
history blame contribute delete
134 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});