UNPKG

@tarojs/taro-swan

Version:
8 lines (6 loc) 204 B
const nextTick = (fn, ...args) => { fn = typeof fn === 'function' ? fn.bind(null, ...args) : fn const timerFunc = swan.nextTick ? swan.nextTick : setTimeout timerFunc(fn) } export default nextTick