Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
12345678910111213141516
  1. const TextEncoder = require('./lib/TextEncoder');
  2. const TextDecoder = require('./lib/TextDecoder');
  3. const EncodingIndexes = require('./encoding-indexes');
  4. const { getEncoding } = require('./lib');
  5. //
  6. // Implementation of Encoding specification
  7. // https://encoding.spec.whatwg.org/
  8. //
  9. module.exports.TextEncoder = TextEncoder
  10. module.exports.TextDecoder = TextDecoder
  11. module.exports.EncodingIndexes = EncodingIndexes
  12. module.exports.getEncoding = getEncoding