* @ngdoc function * @name angular.merge * @module ng * @kind function * * @description * Deeply extends the destination object `dst` by copying own enumerable properties from the `src` object(s) * to `dst`. You can specify multiple `src` objects. If you want to preserve original objects, you can do
(dst)
| 470 | * @returns {Object} Reference to `dst`. |
| 471 | */ |
| 472 | function merge(dst) { |
| 473 | return baseExtend(dst, slice.call(arguments, 1), true); |
| 474 | } |
| 475 | |
| 476 | |
| 477 |
nothing calls this directly
no test coverage detected