mongodb
Version:
The official MongoDB driver for Node.js
42 lines (34 loc) • 974 B
text/typescript
import { MongoInvalidArgumentError } from './error';
/** @internal */
const kPromise = Symbol('promise');
interface PromiseStore {
[]?: PromiseConstructor;
}
const store: PromiseStore = {
[]: undefined
};
/**
* Global promise store allowing user-provided promises
* @public
*/
export class PromiseProvider {
/** Validates the passed in promise library */
static validate(lib: unknown): lib is PromiseConstructor {
if (typeof lib !== 'function')
throw new MongoInvalidArgumentError(`Promise must be a function, got ${lib}`);
return !!lib;
}
/** Sets the promise library */
static set(lib: PromiseConstructor): void {
if (!PromiseProvider.validate(lib)) {
// validate
return;
}
store[kPromise] = lib;
}
/** Get the stored promise library, or resolves passed in */
static get(): PromiseConstructor {
return store[kPromise] as PromiseConstructor;
}
}
PromiseProvider.set(global.Promise);