UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

13 lines 403 B
/** * Returns whether an environment variable value represents a truthy value. * * @param variable - Environment variable value to check. * @returns True when the value is truthy, e.g. '1', 'true', etc. */ export function isTruthy(variable) { if (!variable) { return false; } return ['1', 'true', 'TRUE', 'yes', 'YES'].includes(variable); } //# sourceMappingURL=utilities.js.map