nodeLibs.js 224 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. 'process.nextTick': {
  3. throwsExceptions: false,
  4. returns: 'null',
  5. synchronous: false,
  6. },
  7. 'require': {
  8. throwsExceptions: true,
  9. returns: 'object',
  10. synchronous: true,
  11. },
  12. };