Created
July 27, 2017 20:23
-
-
Save davet1985/ffb92507c9e3aef0c4f0125fc693978c to your computer and use it in GitHub Desktop.
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
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