Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src
import { Nullish } from "./types";
export const isNullish = (v: unknown): v is Nullish =>
v === undefined || v === null || (typeof v === "number" && Number.isNaN(v));