UNPKG

@shopify/cli-kit

Version:

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

8 lines (7 loc) 284 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 declare function isTruthy(variable: string | undefined): boolean;