Skip to content

Instantly share code, notes, and snippets.

View philippspinnler's full-sized avatar

Philipp Spinnler philippspinnler

View GitHub Profile
@philippspinnler
philippspinnler / merge.js
Created March 31, 2015 07:34
Angular function to merge two objects. This method will be in angular 1.4 but is missing in previous versions.
function merge(dst, src) {
var h = dst.$$hashKey;
if (!angular.isObject(src) && !angular.isFunction(src)) return;
var keys = Object.keys(src);
for (var j = 0, jj = keys.length; j < jj; j++) {
var key = keys[j];
var src_new = src[key];
if (angular.isObject(src_new)) {