Skip to content

Instantly share code, notes, and snippets.

@eranimo
Last active January 23, 2018 16:47
Show Gist options
  • Save eranimo/7bfda9113cae74904ca66dbf3044344a to your computer and use it in GitHub Desktop.
Save eranimo/7bfda9113cae74904ca66dbf3044344a to your computer and use it in GitHub Desktop.
Upcoming Javascript features
async function* readLines(path) {
let file = await fileOpen(path);
try {
while (!file.EOF) {
yield await file.readLine();
}
} finally {
await file.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment