@apollo/client
Version:
A fully-featured caching GraphQL client.
22 lines • 917 B
JavaScript
import * as React from "react";
import { decoratePromise } from "@apollo/client/utilities/internal";
// Prevent webpack from complaining about our feature detection of the
// use property of the React namespace, which is expected not
// to exist when using current stable versions, and that's fine.
const useKey = "use";
const realHook = React[useKey];
// This is named with two underscores to allow this hook to evade typical rules of
// hooks (i.e. it can be used conditionally)
export const __use = realHook ||
function __use(promise) {
const decoratedPromise = decoratePromise(promise);
switch (decoratedPromise.status) {
case "pending":
throw decoratedPromise;
case "rejected":
throw decoratedPromise.reason;
case "fulfilled":
return decoratedPromise.value;
}
};
//# sourceMappingURL=__use.js.map