You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 2 години
1234567891011
  1. import TextEncoder from './lib/TextEncoder'
  2. import TextDecoder from './lib/TextDecoder'
  3. import EncodingIndexes from './encoding-indexes'
  4. import { getEncoding } from './lib'
  5. //
  6. // Implementation of Encoding specification
  7. // https://encoding.spec.whatwg.org/
  8. //
  9. export { TextEncoder, TextDecoder, EncodingIndexes, getEncoding }