(source)
| 568 | } |
| 569 | |
| 570 | function omitPrefixedKeys(source) { |
| 571 | const result = {}; |
| 572 | |
| 573 | for (const key in source) { |
| 574 | if (key[0] !== "$") { |
| 575 | result[key] = source[key]; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | return result; |
| 580 | } |
| 581 | |
| 582 | function deepMerge(a, b) { |
| 583 | const result = assign({}, a); |
no outgoing calls
no test coverage detected