Files

10 lines
168 B
JavaScript
Raw Permalink Normal View History

2026-05-03 12:12:57 -04:00
export default function detectRuntime() {
// bun
if (typeof Bun !== 'undefined' || process.versions.bun) {
return 'bun';
// node
} else return 'node';
};