?? GreyFile — Mystic File Browser

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

?? Viewing: isNullish.ts

import { Nullish } from "./types";

export const isNullish = (v: unknown): v is Nullish =>
  v === undefined || v === null || (typeof v === "number" && Number.isNaN(v));


??

??