is-platform
v1.0.0
Published
Utilities that help you detecting platforms.
Downloads
14,269
Readme
is-platform
Usage
import { IS_DENO, IS_NODE, IS_BROWSER, IS_SERVER, IS_ELECTRON } from "is-platform";
IS_NODE; // node => true, deno => false
IS_DENO; // deno => true, node => false
IS_BROWSER; // browser => true
IS_SERVER; // server, e.g. deno or node => true
IS_ELECTRON; // electron => true