* @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)
| 534 | * @returns {Object} Reference to `dst`. |
| 535 | */ |
| 536 | function extend(dst) { |
| 537 | return baseExtend(dst, slice.call(arguments, 1), false); |
| 538 | } |
| 539 | |
| 540 | |
| 541 | /** |
no test coverage detected