isWrappable
isWrappable API reference.
Import
import { isWrappable } from "solid-js";Type signature
function isWrappable<T>(obj: T | NotWrappable): obj is T;Related types
NotWrappable
type NotWrappable = | string | number | bigint | symbol | boolean | Function | null | undefined | SolidStore.Unwrappable[keyof SolidStore.Unwrappable];