Skip to content

Instantly share code, notes, and snippets.

@hulefei
Created September 10, 2018 13:27
Show Gist options
  • Save hulefei/4e7e92b35fa78673018d50e23149cd8b to your computer and use it in GitHub Desktop.
Save hulefei/4e7e92b35fa78673018d50e23149cd8b to your computer and use it in GitHub Desktop.
遍历对象
function* objectEntries(obj) {
let propKeys = Reflect.ownKeys(obj);
for (let propKey of propKeys) {
yield [propKey, obj[propKey]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment