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>
14 lines
626 B
Text
14 lines
626 B
Text
import { notImplemented } from "../../../../_internal/utils.mjs";
|
|
import { ZlibCompress, ZLibDecompress, notImplementedCompress } from "./_shared.mjs";
|
|
export class Gzip extends ZlibCompress {
|
|
_format = "gzip";
|
|
}
|
|
export const gzip = notImplementedCompress("gzip");
|
|
export const createGzip = () => new Gzip();
|
|
export const gzipSync = /*@__PURE__*/ notImplemented("zlib.gzipSync");
|
|
export class Gunzip extends ZLibDecompress {
|
|
_format = "gzip";
|
|
}
|
|
export const gunzip = notImplementedCompress("gunzip");
|
|
export const createGunzip = () => new Gunzip();
|
|
export const gunzipSync = /*@__PURE__*/ notImplemented("zlib.gunzipSync");
|