my test suite

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Only setup - without creating a proxy
const target = {}
const handlers = {
	get(target, prop, receiver) {return 17}
};
// No Proxy
ready
Setup + creating a proxy
const target = {}
const handlers = {
	get(target, prop, receiver) {return 17}
};
new Proxy(target, handlers)
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.