Rocky_Mountain_Vending/.pnpm-store/v10/files/4e/629af64092031683a55b58f4d2d797b320a3909ad69cc2cb67add648179391f5b24cc0db16032bad530a5eaa3e5630d159e0eb812c657ddf618ec16ac51bff
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

25 lines
No EOL
727 B
Text

// x-matched-path header can be decoded incorrectly
// and should only be utf8 characters so this fixes
// incorrectly encoded values
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "fixMojibake", {
enumerable: true,
get: function() {
return fixMojibake;
}
});
function fixMojibake(input) {
// Convert each character's char code to a byte
const bytes = new Uint8Array(input.length);
for(let i = 0; i < input.length; i++){
bytes[i] = input.charCodeAt(i);
}
// Decode the bytes as proper UTF-8
const decoder = new TextDecoder('utf-8');
return decoder.decode(bytes);
}
//# sourceMappingURL=fix-mojibake.js.map