Welcome to mirror list, hosted at ThFree Co, Russian Federation.

set-immediate.js « gauge « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6650a485c4993391e1eac2fa87c650f53fd41a77 (plain)
1
2
3
4
5
6
7
'use strict'
var process = require('./process')
try {
  module.exports = setImmediate
} catch (ex) {
  module.exports = process.nextTick
}