Skip to content

Commit b0cc5f1

Browse files
committed
fix: remove extra semi colons
1 parent ba3842d commit b0cc5f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/dereference.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async function crawl (
5454
let dereferenced;
5555
let result = {
5656
value: obj,
57-
circular: false,
57+
circular: false
5858
};
5959

6060
if (obj && typeof obj === "object" && !ArrayBuffer.isView(obj)) {
@@ -225,7 +225,7 @@ async function dereference$Ref (
225225

226226
const dereferencedObject = {
227227
circular,
228-
value: dereferencedValue,
228+
value: dereferencedValue
229229
};
230230

231231
// only cache if no extra properties than $ref
@@ -251,4 +251,4 @@ function foundCircularReference (keyPath, $refs, options) {
251251
throw ono.reference(`Circular $ref pointer found at ${keyPath}`);
252252
}
253253
return true;
254-
}
254+
}

0 commit comments

Comments
 (0)