Closed
Description
Description
deepMixIn
merges in src
properties that resolve to undefined
into dest
even if they have a value in dest
Steps to reproduce
const dest = { name: 'John', age: 90 }
const src = { name: 'John', age: undefined }
const expected = { name: 'John', age: 90 }
utils.deepMixIn(dest, src) // results to { name: 'John' }
Thanks!
Metadata
Metadata
Assignees
Labels
No labels