2021-01-07 23:16:07 +08:00

4 lines
126 B
JavaScript

import AwaitValue from "./AwaitValue";
export default function _awaitAsyncGenerator(value) {
return new AwaitValue(value);
}