mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 01:59:31 +08:00
7 lines
139 B
Text
7 lines
139 B
Text
'use strict'
|
|
var process = require('./process')
|
|
try {
|
|
module.exports = setImmediate
|
|
} catch (ex) {
|
|
module.exports = process.nextTick
|
|
}
|