MCPcopy
hub / github.com/angular-ui/ui-grid / merge

Function merge

lib/test/angular/1.8.0/angular.js:557–559  ·  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

555* @returns {Object} Reference to `dst`.
556*/
557function merge(dst) {
558 return baseExtend(dst, slice.call(arguments, 1), true);
559}
560
561
562

Callers

nothing calls this directly

Calls 1

baseExtendFunction · 0.70

Tested by

no test coverage detected