which-runtime

Deno module for checking which runtime the code is running in.

MIT License

Stars
6

which-runtime

Deno module for checking which runtime the code is running in.

This may be useful in some extreme scenarios when using dnt. Ideally do not use this and feature test instead.

import { isDeno, isNode } from "jsr:@david/[email protected]";

if (isNode) {
  // do something
}

if (isDeno) {
  // do something
}