We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fde9b6 commit 6932828Copy full SHA for 6932828
index.js
@@ -375,7 +375,8 @@ function buildInnerObject (context, location) {
375
addComma = '!addComma && (addComma = true) || (json += JSON_STR_COMMA)'
376
}
377
378
- for (const key of propertiesKeys) {
+ for (let i = 0; i < propertiesKeys.length; i++) {
379
+ const key = propertiesKeys[i]
380
let propertyLocation = propertiesLocation.getPropertyLocation(key)
381
if (propertyLocation.schema.$ref) {
382
propertyLocation = resolveRef(context, propertyLocation)
0 commit comments