@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
10 lines • 367 B
JavaScript
import { isTruthy } from './context/utilities.js';
/**
* Returns true if the POLARIS_UNIFIED environment variable is set to true.
*
* @returns `true` if the POLARIS_UNIFIED environment variable is set to true.
*/
export function isPolarisUnifiedEnabled() {
return isTruthy(process.env.POLARIS_UNIFIED);
}
//# sourceMappingURL=is-polaris-unified-enabled.js.map