7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
import { MongoInternals } from 'meteor/mongo';
|
|
|
|
export const createBucket = bucketName => {
|
|
const options = bucketName ? {bucketName} : (void 0);
|
|
return new MongoInternals.NpmModule.GridFSBucket(MongoInternals.defaultRemoteCollectionDriver().mongo.db, options);
|
|
}
|