* Augment an target Object or Array by intercepting * the prototype chain using __proto__
(target, src)
| 764 | * the prototype chain using __proto__ |
| 765 | */ |
| 766 | function protoAugment (target, src) { |
| 767 | /* eslint-disable no-proto */ |
| 768 | target.__proto__ = src; |
| 769 | /* eslint-enable no-proto */ |
| 770 | } |
| 771 | |
| 772 | /** |
| 773 | * Augment an target Object or Array by defining |
nothing calls this directly
no outgoing calls
no test coverage detected