feat: init
This commit is contained in:
35
node_modules/unenv/dist/runtime/node/buffer.mjs
generated
vendored
Normal file
35
node_modules/unenv/dist/runtime/node/buffer.mjs
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import { notImplemented } from "../_internal/utils.mjs";
|
||||
import { Buffer as _Buffer, kMaxLength, INSPECT_MAX_BYTES, SlowBuffer } from "./internal/buffer/buffer.mjs";
|
||||
import { File } from "./internal/buffer/file.mjs";
|
||||
export { kMaxLength, INSPECT_MAX_BYTES, SlowBuffer } from "./internal/buffer/buffer.mjs";
|
||||
export const Buffer = globalThis.Buffer || _Buffer;
|
||||
export { File } from "./internal/buffer/file.mjs";
|
||||
// @ts-expect-eerror https://github.com/unjs/unenv/issues/64
|
||||
export const Blob = globalThis.Blob;
|
||||
export const resolveObjectURL = /* @__PURE__ */ notImplemented("buffer.resolveObjectURL");
|
||||
export const transcode = /* @__PURE__ */ notImplemented("buffer.transcode");
|
||||
export const isUtf8 = /* @__PURE__ */ notImplemented("buffer.isUtf8");
|
||||
export const isAscii = /* @__PURE__ */ notImplemented("buffer.isAscii");
|
||||
export const btoa = globalThis.btoa.bind(globalThis);
|
||||
export const atob = globalThis.atob.bind(globalThis);
|
||||
export const kStringMaxLength = 0;
|
||||
export const constants = {
|
||||
MAX_LENGTH: kMaxLength,
|
||||
MAX_STRING_LENGTH: kStringMaxLength
|
||||
};
|
||||
export default {
|
||||
Buffer,
|
||||
SlowBuffer,
|
||||
kMaxLength,
|
||||
INSPECT_MAX_BYTES,
|
||||
Blob,
|
||||
resolveObjectURL,
|
||||
transcode,
|
||||
btoa,
|
||||
atob,
|
||||
kStringMaxLength,
|
||||
constants,
|
||||
isUtf8,
|
||||
isAscii,
|
||||
File
|
||||
};
|
||||
Reference in New Issue
Block a user