* @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)
| 467 | * @returns {Object} Reference to `dst`. |
| 468 | */ |
| 469 | function extend(dst) { |
| 470 | return baseExtend(dst, slice.call(arguments, 1), false); |
| 471 | } |
| 472 | |
| 473 | |
| 474 | /** |
no test coverage detected