diff --git a/src/Angular.js b/src/Angular.js index 1030e5410521..6ad51d06707f 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -352,8 +352,12 @@ function baseExtend(dst, objs, deep) { var src = obj[key]; if (deep && isObject(src)) { - if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {}; - baseExtend(dst[key], [src], true); + if (isDate(src)) { + dst[key] = new Date(src.valueOf()); + } else { + if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {}; + baseExtend(dst[key], [src], true); + } } else { dst[key] = src; } diff --git a/test/AngularSpec.js b/test/AngularSpec.js index e30d4abdaee8..fe7135955b49 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -481,6 +481,16 @@ describe('angular', function() { // make sure we retain the old key expect(hashKey(dst)).toEqual(h); }); + + + it('should copy dates by reference', function() { + var src = { date: new Date() }; + var dst = {}; + + extend(dst, src); + + expect(dst.date).toBe(src.date); + }); }); @@ -548,6 +558,18 @@ describe('angular', function() { }); expect(dst.foo).not.toBe(src.foo); }); + + + it('should copy dates by value', function() { + var src = { date: new Date() }; + var dst = {}; + + merge(dst, src); + + expect(dst.date).not.toBe(src.date); + expect(isDate(dst.date)).toBeTruthy(); + expect(dst.date.valueOf()).toEqual(src.date.valueOf()); + }); });