4 lines
126 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
import AwaitValue from "./AwaitValue";
export default function _awaitAsyncGenerator(value) {
return new AwaitValue(value);
}