Files
2026-02-20 16:06:40 +09:00

6 lines
119 B
JavaScript

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