createBucket.js 282 B

123456789
  1. import { MongoInternals } from 'meteor/mongo';
  2. export const createBucket = bucketName => {
  3. const options = bucketName ? { bucketName } : void 0;
  4. return new MongoInternals.NpmModule.GridFSBucket(
  5. MongoInternals.defaultRemoteCollectionDriver().mongo.db,
  6. options,
  7. );
  8. };