Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
12345678910111213141516 |
- const TextEncoder = require('./lib/TextEncoder');
- const TextDecoder = require('./lib/TextDecoder');
- const EncodingIndexes = require('./encoding-indexes');
- const { getEncoding } = require('./lib');
-
- //
- // Implementation of Encoding specification
- // https://encoding.spec.whatwg.org/
- //
-
-
-
- module.exports.TextEncoder = TextEncoder
- module.exports.TextDecoder = TextDecoder
- module.exports.EncodingIndexes = EncodingIndexes
- module.exports.getEncoding = getEncoding
|