Lines Matching refs:iconv
1 … Status](https://travis-ci.org/ashtuchkin/iconv-lite.svg?branch=master)](https://travis-ci.org/ash…
6 …* Faster than [node-iconv](https://github.com/bnoordhuis/node-iconv) (see below for performance co…
9 …* [Deprecated] Can extend Node.js primitives (buffers, streams) to support all iconv-lite encoding…
11 …* Typescript [type definition file](https://github.com/ashtuchkin/iconv-lite/blob/master/lib/index…
15 [](https://npmjs.…
20 var iconv = require('iconv-lite');
23 str = iconv.decode(Buffer.from([0x68, 0x65, 0x6c, 0x6c, 0x6f]), 'win1251');
26 buf = iconv.encode("Sample input string", 'win1251');
29 iconv.encodingExists("us-ascii")
37 var converterStream = iconv.decodeStream('win1251');
47 .pipe(iconv.decodeStream('win1251'))
48 .pipe(iconv.encodeStream('ucs2'))
53 req.pipe(iconv.decodeStream('win1251')).collect(function(err, body) {
61 …work on latest Node versions. See [details](https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-…
64 // After this call all Node basic primitives will understand iconv-lite encodings.
65 iconv.extendNodeEncodings();
91 iconv.undoExtendNodeEncodings();
99 IBM/DOS codepages, Macintosh family, KOI8 family, all others supported by iconv library.
103 See [all supported encodings on wiki](https://github.com/ashtuchkin/iconv-lite/wiki/Supported-Encod…
105 …yte encodings are generated automatically from [node-iconv](https://github.com/bnoordhuis/node-ico…
112 Comparison with node-iconv module (1000x256kb, on MacBook Pro, Core i5/2.6 GHz, Node v0.12.0).
115 operation iconv@2.1.4 iconv-lite@0.4.7
123 (f.ex. `iconv.decode(buf, enc, {stripBOM: false})`).
138 …thod, otherwise [bad things usually happen](https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buff…
145 $ git clone git@github.com:ashtuchkin/iconv-lite.git
146 $ cd iconv-lite