1'use strict'
2var process = require('./process')
3try {
4  module.exports = setImmediate
5} catch (ex) {
6  module.exports = process.nextTick
7}
8