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>
32 lines
1.4 KiB
Text
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");
|