CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
query-promise.js27 linesDownload Raw Back to drizzle-orm
1import { entityKind } from "./entity.js";2class QueryPromise {3  static [entityKind] = "QueryPromise";4  [Symbol.toStringTag] = "QueryPromise";5  catch(onRejected) {6    return this.then(void 0, onRejected);7  }8  finally(onFinally) {9    return this.then(10      (value) => {11        onFinally?.();12        return value;13      },14      (reason) => {15        onFinally?.();16        throw reason;17      }18    );19  }20  then(onFulfilled, onRejected) {21    return this.execute().then(onFulfilled, onRejected);22  }23}24export {25  QueryPromise26};27//# sourceMappingURL=query-promise.js.map