Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.js 327B

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 }