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.

17 lines
234 B

  1. /*!
  2. * ignore
  3. */
  4. var driver;
  5. if (typeof window === 'undefined') {
  6. driver = require(global.MONGOOSE_DRIVER_PATH || './node-mongodb-native');
  7. } else {
  8. driver = require('./browser');
  9. }
  10. /*!
  11. * ignore
  12. */
  13. module.exports = driver;