Test name | Executions per second |
---|---|
Object.assign | 19201438.0 Ops/sec |
Destructuring | 18080626.0 Ops/sec |
const obj = { one: 'one' }
const res = Object.assign({}, { toString: function() { return this.one; }});
const res = {obj, toString: function() { return this.one; }};