You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
208 B

  1. /**
  2. * Just run the callback through setImmediate, so that it appears
  3. * asynchronous, even when unnecessary.
  4. */
  5. function ensure(modules, callback) {
  6. setImmediate(callback);
  7. }
  8. module.exports = ensure;