usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
7 lines • 432 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CREDENTIAL_API_EXISTS = exports.LOCAL_STORAGE_EXISTS = exports.WINDOW_EXISTS = void 0;
exports.WINDOW_EXISTS = typeof window !== "undefined";
exports.LOCAL_STORAGE_EXISTS = exports.WINDOW_EXISTS && !!window.localStorage;
exports.CREDENTIAL_API_EXISTS = exports.WINDOW_EXISTS && !!window.PasswordCredential;
//# sourceMappingURL=consts.js.map