test/tests-ui/utils/nopProxy.js

7 lines
128 B
JavaScript
Raw Normal View History

2024-08-03 09:27:31 +00:00
export const nop = new Proxy(function () {}, {
get: () => nop,
set: () => true,
apply: () => nop,
construct: () => nop,
});