elbuhoui / tests-ui /utils /nopProxy.js
firzaelbuho's picture
Upload 364 files
6c4f135 verified
raw
history blame
128 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});