Magic-Me / tests-ui /utils /nopProxy.js
Xue-She Wang
init
0d95f10
raw
history blame
128 Bytes
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});