Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 550f4ac

Browse files
committed
style(Angular.js): make jscs happy
1 parent f683061 commit 550f4ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Angular.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ function extend(dst) {
359359
for (var j = 0, jj = keys.length; j < jj; j++) {
360360
var key = keys[j];
361361
var src = obj[key];
362-
363-
if (isDeep && isObject(src)) {
362+
363+
if (isDeep && isObject(src)) {
364364
if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {};
365365
extend(dst[key], src, 0xFACECAFE);
366366
} else {

test/AngularSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ describe('angular', function() {
231231
expect(dst).toEqual({
232232
foo: {
233233
bar: 'foobar',
234-
bazz: 'foobazz',
234+
bazz: 'foobazz'
235235
}
236236
});
237237
expect(dst.foo.$$hashKey).toBeUndefined();

0 commit comments

Comments
 (0)