* @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)
| 456 | * @returns {Object} Reference to `dst`. |
| 457 | */ |
| 458 | function extend(dst) { |
| 459 | return baseExtend(dst, slice.call(arguments, 1), false); |
| 460 | } |
| 461 | |
| 462 | |
| 463 | /** |
no test coverage detected