elearning/Frontend-Learner/node_modules/unenv/dist/runtime/polyfill/buffer.mjs

5 lines
95 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { Buffer } from "node:buffer";
if (!globalThis.Buffer) {
globalThis.Buffer = Buffer;
}