liquid.isEnabled() allows you to check if the liquid provider is enabled without explicitly enabling it through liquid.enable() (which may cause a confirmation popup in some providers)
Method
function isEnabled(): Promise<boolean>;
Example
if(typeof window.liquid !== 'undefined' && window.liquid.isEnabled) {
const isEnabled = await window.liquid.isEnabled();
// do something with the value
console.log(isEnabled)
}