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.

index.js 330B

12345678910111213
  1. /*!
  2. * Module exports.
  3. */
  4. 'use strict';
  5. exports.Binary = require('./binary');
  6. exports.Collection = function() {
  7. throw new Error('Cannot create a collection from browser library');
  8. };
  9. exports.Decimal128 = require('./decimal128');
  10. exports.ObjectId = require('./objectid');
  11. exports.ReadPreference = require('./ReadPreference');