Rocky_Mountain_Vending/.pnpm-store/v10/files/39/6e4c9422edcf6ad294427134628c34f037459507d48f8d2627f98afdb26b8f9253d079f6fae234a9d21be6cbf9252bb31d55343155be5ce2f2fbb8db71badb
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

15 lines
322 B
Text

export class Serializer {
writeHeader() {}
writeValue(val) {
return false;
}
releaseBuffer() {
return Buffer.from("");
}
transferArrayBuffer(id, arrayBuffer) {}
writeDouble(value) {}
writeUint32(value) {}
writeUint64(hi, lo) {}
writeRawBytes(buffer) {}
}
export class DefaultSerializer extends Serializer {}