Ohm-Management - Projektarbeit B-ME
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.

env.js 662B

12345678910111213141516171819202122
  1. 'use strict';
  2. exports.isNode = 'undefined' != typeof process
  3. && 'object' == typeof module
  4. && 'object' == typeof global
  5. && 'function' == typeof Buffer
  6. && process.argv;
  7. exports.isMongo = !exports.isNode
  8. && 'function' == typeof printjson
  9. && 'function' == typeof ObjectId
  10. && 'function' == typeof rs
  11. && 'function' == typeof sh;
  12. exports.isBrowser = !exports.isNode
  13. && !exports.isMongo
  14. && 'undefined' != typeof window;
  15. exports.type = exports.isNode ? 'node'
  16. : exports.isMongo ? 'mongo'
  17. : exports.isBrowser ? 'browser'
  18. : 'unknown';