latex-ub/services/web/frontend/js/utils/decode-utf8.ts
2025-05-05 12:24:05 +00:00

5 lines
284 B
TypeScript

// TODO: MIGRATION: Can we use TextDecoder now? https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder
// See http://ecmanaut.blogspot.co.uk/2006/07/encoding-decoding-utf8-in-javascript.html
export function decodeUtf8(text: string) {
return decodeURIComponent(escape(text))
}