Skip to content

useSupported

Package
Share - Core
Category
Description
sSR compatibility `isSupported`

SSR compatibility isSupported

Usage

ts
import { useSupported } from '@hungpvq/shared-core';

const isSupported = useSupported(() => navigator && 'getBattery' in navigator);

if (isSupported.value) {
  // do something
  navigator.getBattery;
}