UNPKG

okam-core

Version:

The extension for small program framework

16 lines (11 loc) 310 B
/** * @file Polyfill for Asyn/Await support * @author sparklewhy@gmail.com */ 'use strict'; import * as runtime from 'regenerator-runtime/runtime'; import {appGlobal} from '../na/index'; if (typeof regeneratorRuntime !== 'object') { appGlobal.regeneratorRuntime = runtime; } export default runtime;