()
| 48 | |
| 49 | |
| 50 | function ObjectAssign() { |
| 51 | const result = Object.assign({}, input); |
| 52 | if (Object.keys(result).length != 5) throw 666; |
| 53 | } |
| 54 | |
| 55 | function ObjectAssignAndOverwrite() { |
| 56 | const result = Object.assign({}, input, {a : 6}); |
no test coverage detected
searching dependent graphs…