UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

7 lines (6 loc) 317 B
/** Whether a workflow / complete_workflow button should be disabled. */ export function isWorkflowButtonInputGated(actionType, requireValidInputs, inputsSatisfied) { return (requireValidInputs !== false && (actionType === "workflow" || actionType === "complete_workflow") && !inputsSatisfied); }