This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/esm/server/lib/fix-mojibake.js
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

15 lines
523 B
JavaScript

// x-matched-path header can be decoded incorrectly
// and should only be utf8 characters so this fixes
// incorrectly encoded values
export 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