# runtime-detector

A package to detect which runtime you are executing in.

```ts
import { detect } from "@luca/runtime-detector";

const runtime = detect();
console.log(runtime); // "node" | "deno" | "browser" | null
```
