Skip to content

Instantly share code, notes, and snippets.

@hex-ci
hex-ci / yield-to-async.js
Created July 23, 2021 08:09 — forked from pgherveou/yield-to-async.js
convert co/yield to to async/await
// https://astexplorer.net/#/gist/48d24982fceb3f258cc2dcd764fe8e38/937f48fc25443224a08bb20774a7d8868052770c
export default function ({types: t}) {
return {
visitor: {
ObjectMethod(path) {
if (path.node.generator) {
path.node.async = true
path.node.generator = false
}