Skip to content

Commit 1ea275f

Browse files
authored
perf(lib): replace accumulator spread with object.assign (#852)
1 parent d54763d commit 1ea275f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/util/resolve-local-ref.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@ function resolveLocalRef (jsonSchema, externalSchemas) {
2424
// for oneOf, anyOf, allOf support in querystring/params/headers
2525
if (jsonSchema.oneOf || jsonSchema.anyOf || jsonSchema.allOf) {
2626
const schemas = jsonSchema.oneOf || jsonSchema.anyOf || jsonSchema.allOf
27-
return schemas.reduce(function (acc, schema) {
28-
const json = resolveLocalRef(schema, externalSchemas)
29-
return { ...acc, ...json }
30-
}, {})
27+
return schemas.reduce((acc, schema) => Object.assign(acc, resolveLocalRef(schema, externalSchemas)), {})
3128
}
3229

3330
// $ref is in the format: #/definitions/<resolved definition>/<optional fragment>

0 commit comments

Comments
 (0)