We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8114821 commit e28031bCopy full SHA for e28031b
test/test.js
@@ -10,10 +10,10 @@ class Custom {
10
}
11
12
const NullObject = (() => {
13
- const C = function () {};
14
- C.prototype = Object.create(null);
15
- return C;
16
-})()
+ const C = function () {};
+ C.prototype = Object.create(null);
+ return C;
+})();
17
18
const node_version = +process.versions.node.split('.')[0];
19
@@ -334,9 +334,8 @@ const fixtures = {
334
js: '(function(a){a.foo="bar";a.self=a;return a}({}))',
335
json: '[{"foo":1,"self":0},"bar"]',
336
validate: (value) => {
337
- assert.is(value.foo, "bar")
+ assert.is(value.foo, 'bar');
338
assert.is(value.self, value);
339
-
340
341
};
342
})(Object.assign(new NullObject(), { foo: 'bar' })),
0 commit comments