UNPKG

@open-condo/miniapp-utils

Version:

A set of helper functions / components / hooks used to build new condo apps fast

12 lines 234 B
// src/helpers/environment.ts function isSSR() { return typeof window === "undefined"; } function isDebug() { return process.env.NODE_ENV === "development"; } export { isDebug, isSSR }; //# sourceMappingURL=environment.mjs.map