a zip code crypto-currency system good for red ONLY

process.js 719B

12345678910111213141516171819202122232425262728293031
  1. exports.nextTick = function nextTick(fn) {
  2. setTimeout(fn, 0);
  3. };
  4. exports.platform = exports.arch =
  5. exports.execPath = exports.title = 'browser';
  6. exports.pid = 1;
  7. exports.browser = true;
  8. exports.env = {};
  9. exports.argv = [];
  10. exports.binding = function (name) {
  11. throw new Error('No such module. (Possibly not yet loaded)')
  12. };
  13. (function () {
  14. var cwd = '/';
  15. var path;
  16. exports.cwd = function () { return cwd };
  17. exports.chdir = function (dir) {
  18. if (!path) path = require('path');
  19. cwd = path.resolve(dir, cwd);
  20. };
  21. })();
  22. exports.exit = exports.kill =
  23. exports.umask = exports.dlopen =
  24. exports.uptime = exports.memoryUsage =
  25. exports.uvCounters = function() {};
  26. exports.features = {};