Created
March 14, 2017 13:06
-
-
Save simenbrekken/cee77159f0212bf49c75545fab294cd3 to your computer and use it in GitHub Desktop.
Flatten and expand object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { reduce, set } from 'lodash' | |
export default function expandObject(object) { | |
return reduce(object, (expanded, value, key) => set(expanded, key, value), {}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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