blob: c0228e23e8071b83544b3ad55d258a0c0c9b3159 (
plain)
1
2
3
4
5
6
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
const noop = () => {};
export default function consumePromise<T>(promise: Promise<T>): void {
promise.then(noop, noop);
}
|