Coroutines Generators

suggest change
const promiseReturningFunction = Promise.coroutine(function* (file) {
  const data = yield fs.readFileAsync(file) // this returns a Promise and resolves to the file contents

  return data.toString().toUpperCase()
})

promiseReturningFunction('file.txt').then(console.log)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents