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>
19 lines
273 B
Text
19 lines
273 B
Text
const b4a = require('b4a')
|
|
|
|
module.exports = class PassThroughDecoder {
|
|
constructor (encoding) {
|
|
this.encoding = encoding
|
|
}
|
|
|
|
get remaining () {
|
|
return 0
|
|
}
|
|
|
|
decode (tail) {
|
|
return b4a.toString(tail, this.encoding)
|
|
}
|
|
|
|
flush () {
|
|
return ''
|
|
}
|
|
}
|