Test name | Executions per second |
---|---|
Object | 5720528.5 Ops/sec |
Proxy | 1571376.6 Ops/sec |
Proxy setter | 1233185.2 Ops/sec |
object = { test: 1 }
proxy = new Proxy(object, {})
proxyWithHandler = new Proxy(object, {
set(target, prop, value) {
target[prop] = value
}
})
object.test = 1
proxy.test = 1
proxyWithHandler.test = 1