For the complete documentation index, see llms.txt. This page is also available as Markdown.

πŸ†•isEnabled

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)
  }

Demo

Last updated

Was this helpful?