Skip to content

Instantly share code, notes, and snippets.

@Announcement
Created April 4, 2018 01:58
Show Gist options
  • Save Announcement/1697e5ba97c4a6330df5d5b067e6c697 to your computer and use it in GitHub Desktop.
Save Announcement/1697e5ba97c4a6330df5d5b067e6c697 to your computer and use it in GitHub Desktop.
function * getProperties (object) {
for (const [key, value] of Object.entries(object)) {
yield [key]
if (typeof value === 'object')
for (const each of getProperties(value))
yield [key, ...each]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment