ESlint object-curly-spacing

This commit is contained in:
Peter Jaszkowiak
2017-02-18 12:30:49 -07:00
parent 1493afee2a
commit 896c8c7343
207 changed files with 971 additions and 971 deletions

View File

@@ -70,8 +70,8 @@ describe('Utility Methods', function () {
});
it('should shallow merge two objects', function (done) {
var a = {foo: 1, cat1: 'ginger'};
var b = {baz: 2, cat2: 'phoebe'};
var a = { foo: 1, cat1: 'ginger' };
var b = { baz: 2, cat2: 'phoebe' };
var obj = utils.merge(a, b);
assert.strictEqual(obj.foo, 1);
assert.strictEqual(obj.baz, 2);