Files

6 lines
119 B
JavaScript
Raw Permalink Normal View History

2026-03-14 20:41:55 +00:00
// src/globals.ts
import crypto from "crypto";
if (typeof global.crypto === "undefined") {
global.crypto = crypto;
}