MCPcopy Index your code
hub / github.com/angular-ui/ui-router / merge

Function merge

test/angular/1.5/angular.js:476–478  ·  view source on GitHub ↗

* @ngdoc function * @name angular.merge * @module ng * @kind function * * @description * Deeply 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)

Source from the content-addressed store, hash-verified

474* @returns {Object} Reference to `dst`.
475*/
476function merge(dst) {
477 return baseExtend(dst, slice.call(arguments, 1), true);
478}
479
480
481

Callers

nothing calls this directly

Calls 1

baseExtendFunction · 0.70

Tested by

no test coverage detected