-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathpromise_provider.ts
41 lines (34 loc) · 974 Bytes
/
promise_provider.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { MongoInvalidArgumentError } from './error';
/** @internal */
const kPromise = Symbol('promise');
interface PromiseStore {
[kPromise]?: PromiseConstructor;
}
const store: PromiseStore = {
[kPromise]: 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);