UNPKG

@antmove/wx-alipay

Version:

transform wechat miniprogram to alipay miniprogram tool.

10 lines (9 loc) 190 B
module.exports = function nextTick(fn, delay = 0) { if (typeof fn === 'function') { if (!delay) { Promise.resolve().then(fn) } else { setTimeout(fn, delay) } } }