Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created March 14, 2017 13:06
Show Gist options
  • Save simenbrekken/cee77159f0212bf49c75545fab294cd3 to your computer and use it in GitHub Desktop.
Save simenbrekken/cee77159f0212bf49c75545fab294cd3 to your computer and use it in GitHub Desktop.
Flatten and expand object
import { reduce, set } from 'lodash'
export default function expandObject(object) {
return reduce(object, (expanded, value, key) => set(expanded, key, value), {})
}
import { isPlainObject, filter, reduce } from 'lodash'
export default function flattenObject(object, parentPath, separator = '.') {
return reduce(object, (changes, value, key) => {
const path = filter([parentPath, key]).join(separator)
const childValues = isPlainObject(value) ? flattenObject(value, path) : {
[path]: value,
}
return {
...changes,
...childValues,
}
}, {})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment