Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/609871cf5fde629057fe97a9ac74a1cd408006f9c10000a8eabf76b6e463d54a8ca4b7e0cd742548072ece64ed19c41cb8cbaae42c805c7ef92a572c8c83a6
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

32 lines
1.4 KiB
Text

import { createNotImplementedError } from "../../../../_internal/utils.mjs";
import { notImplemented } from "../../../../_internal/utils.mjs";
import { ZlibCompress, ZLibDecompress, notImplementedCompress } from "./_shared.mjs";
export class Deflate extends ZlibCompress {
_format = "deflate";
params(level, strategy, callback) {
throw createNotImplementedError("Deflate.params");
}
reset() {
throw createNotImplementedError("Deflate.reset");
}
}
export const deflate = notImplementedCompress("deflate");
export const createDeflate = () => new Deflate();
export const deflateSync = /*@__PURE__*/ notImplemented("zlib.deflateSync");
export class Inflate extends ZLibDecompress {
_format = "deflate";
reset() {
throw createNotImplementedError("Inflate.reset");
}
}
export const inflate = notImplementedCompress("inflate");
export const createInflate = () => new Inflate();
export const inflateSync = /*@__PURE__*/ notImplemented("zlib.inflateSync");
export class DeflateRaw extends Deflate {}
export const deflateRaw = notImplementedCompress("deflateRaw");
export const createDeflateRaw = () => new DeflateRaw();
export const deflateRawSync = /*@__PURE__*/ notImplemented("zlib.deflateRawSync");
export class InflateRaw extends Inflate {}
export const inflateRaw = notImplementedCompress("inflateRaw");
export const createInflateRaw = () => new InflateRaw();
export const inflateRawSync = /*@__PURE__*/ notImplemented("zlib.inflateRawSync");