Files

8 lines
140 B
JavaScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
// src/utils/jwt/utf8.ts
var utf8Encoder = new TextEncoder();
var utf8Decoder = new TextDecoder();
export {
utf8Decoder,
utf8Encoder
};