* @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
(dst)
| 448 | * @returns {Object} Reference to `dst`. |
| 449 | */ |
| 450 | function extend(dst) { |
| 451 | return baseExtend(dst, slice.call(arguments, 1), false); |
| 452 | } |
| 453 | |
| 454 | /** |
| 455 | * @ngdoc function |
no test coverage detected