UNPKG

web-encoding

Version:

TextEncoder and TextDecoder APIs from Encoding Standard APIs in a universal package

8 lines (6 loc) 278 B
// 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 }