JasonSmithSO's picture
Upload 203 files
1b1c183 verified
raw
history blame contribute delete
128 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});