Skip to content

Instantly share code, notes, and snippets.

@davet1985
Created July 27, 2017 20:23
Show Gist options
  • Save davet1985/ffb92507c9e3aef0c4f0125fc693978c to your computer and use it in GitHub Desktop.
Save davet1985/ffb92507c9e3aef0c4f0125fc693978c to your computer and use it in GitHub Desktop.
function flatten(object, path, result) {
if (!result) {
result = {};
}
for (let prop in object) {
if (typeof object[prop] !== 'object') {
result[path ? path + prop : prop] = object[prop];
} else {
flatten(object[prop], path ? path + prop + '.' : prop + '.', result);
}
}
return result;
}
describe('flatten', function() {
it('basic case', function() {
flatten({ a: 1, d: 2}).should.deep.equal({ a: 1, d: 2});
});
it('complex case', function() {
const res = flatten({ a: { b: { c: 1 } }, d: 2});
res.should.deep.equal({ 'a.b.c': 1, d: 2});
});
it('complex case 2', function() {
const res = flatten({ a: { b: { c: 1 } }, d: { e: 2 }, f: 34});
res.should.deep.equal({ 'a.b.c': 1, 'd.e': 2, f: 34});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment