1.0.0 • Published 8 years ago
nested-object-values v1.0.0
nested-object-values
Get all object values, even nested ones.
Example
const object = {
foo: {
bar: {
baz: {
qux: 'mux'
}
}
}
}
const values = nestedObjectValues(object)
// [ 'mux' ]
License
MIT
1.0.0
8 years ago