Files
2026-05-17 12:43:53 -07:00

6 lines
119 B
JavaScript

// src/globals.ts
import crypto from "crypto";
if (typeof global.crypto === "undefined") {
global.crypto = crypto;
}