Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
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";
|
|
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
|
|
};
|