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