* @ngdoc function * @name angular.extend * @module ng * @kind function * * @description * 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)
| 515 | * @returns {Object} Reference to `dst`. |
| 516 | */ |
| 517 | function extend(dst) { |
| 518 | return baseExtend(dst, slice.call(arguments, 1), false); |
| 519 | } |
| 520 | |
| 521 | |
| 522 | /** |
no test coverage detected