Skip to content

Commit e28031b

Browse files
committed
formatting
1 parent 8114821 commit e28031b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

test/test.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ class Custom {
1010
}
1111

1212
const NullObject = (() => {
13-
const C = function () {};
14-
C.prototype = Object.create(null);
15-
return C;
16-
})()
13+
const C = function () {};
14+
C.prototype = Object.create(null);
15+
return C;
16+
})();
1717

1818
const node_version = +process.versions.node.split('.')[0];
1919

@@ -334,9 +334,8 @@ const fixtures = {
334334
js: '(function(a){a.foo="bar";a.self=a;return a}({}))',
335335
json: '[{"foo":1,"self":0},"bar"]',
336336
validate: (value) => {
337-
assert.is(value.foo, "bar")
337+
assert.is(value.foo, 'bar');
338338
assert.is(value.self, value);
339-
340339
}
341340
};
342341
})(Object.assign(new NullObject(), { foo: 'bar' })),

0 commit comments

Comments
 (0)