Skip to content

Instantly share code, notes, and snippets.

@IgnacioCastro0713
Last active June 17, 2020 03:29
Show Gist options
  • Save IgnacioCastro0713/d0806bca3f9a640e8aa9413514f83eff to your computer and use it in GitHub Desktop.
Save IgnacioCastro0713/d0806bca3f9a640e8aa9413514f83eff to your computer and use it in GitHub Desktop.
convert object to array
function* toArray(obj) {
for (let prop of Object.keys(obj))
yield obj[prop];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment