SyneticNL / Hyral

Hypermedia oriented Resource API Layer
MIT License
34 stars 2 forks source link

fix(json-api): normalizeResource can now complete on undefined attributes #140

Closed Blissful89 closed 1 month ago

Blissful89 commented 3 years ago

Response could fail on data.attributes being undefined; Object.assign(undefined, <value>).

Changed to { ...data.attributes, ...<value> } to prevent error from occuring