(i, o)
| 434 | } |
| 435 | |
| 436 | function merge(i, o) { |
| 437 | Object.keys(o).forEach(function(key) { |
| 438 | i[key] = o[key]; |
| 439 | }); |
| 440 | return i; |
| 441 | } |
| 442 | |
| 443 | function ensure(i, o) { |
| 444 | Object.keys(o).forEach(function(key) { |
no outgoing calls
no test coverage detected