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