Files
cannaiq/backend/node_modules/web-encoding/src/lib.mjs
2025-11-28 19:45:44 -07:00

8 lines
278 B
JavaScript

// In node `export { TextEncoder }` throws:
// "Export 'TextEncoder' is not defined in module"
// To workaround we first define constants and then export with as.
const Encoder = TextEncoder
const Decoder = TextDecoder
export { Encoder as TextEncoder, Decoder as TextDecoder }