windows-1251
Version:
A robust windows-1251 encoder/decoder written in JavaScript.
78 lines (51 loc) • 3.26 kB
Markdown
# windows-1251 [](https://github.com/mathiasbynens/windows-1251/actions?query=workflow%3Arun-checks) [](https://www.npmjs.com/package/windows-1251)
_windows-1251_ is a robust JavaScript implementation of [the windows-1251 character encoding as defined by the Encoding Standard](https://encoding.spec.whatwg.org/#windows-1251).
This encoding is known under the following names: cp1251, windows-1251, and x-cp1251.
## Installation
Via [npm](https://www.npmjs.com/):
```bash
npm install windows-1251
```
In a browser or in [Node.js](https://nodejs.org/):
```js
import {encode, decode, labels} from 'windows-1251';
// or…
import * as windows1251 from 'windows-1251';
```
## API
### `windows1251.labels`
An array of strings, each representing a [label](https://encoding.spec.whatwg.org/#label) for this encoding.
### `windows1251.encode(input, options)`
This function takes a plain text string (the `input` parameter) and encodes it according to windows-1251. The return value is an environment-agnostic `Uint16Array` of which each element represents an octet as per windows-1251.
```js
const encodedData = windows1251.encode(text);
```
The optional `options` object and its `mode` property can be used to set the error mode. The two available error modes are `'fatal'` (the default) or `'replacement'`. (Note: This differs from [the spec](https://encoding.spec.whatwg.org/#error-mode), which recognizes “fatal” and HTML” modes for encoders. The reason behind this difference is that the spec algorithm is aimed at producing HTML, whereas this library encodes into an environment-agnostic `Uint16Array` of bytes.)
```js
const encodedData = windows1251.encode(text, {
mode: 'replacement'
});
// If `text` contains a symbol that cannot be represented in windows-1251,
// instead of throwing an error, it becomes 0xFFFD.
```
### `windows1251.decode(input, options)`
This function decodes `input` according to windows-1251. The `input` parameter can either be a `Uint16Array` of which each element represents an octet as per windows-1251, or a ‘byte string’ (i.e. a string of which each item represents an octet as per windows-1251).
```js
const text = windows1251.decode(encodedData);
```
The optional `options` object and its `mode` property can be used to set the [error mode](https://encoding.spec.whatwg.org/#error-mode). For decoding, the error mode can be `'replacement'` (the default) or `'fatal'`.
```js
const text = windows1251.decode(encodedData, {
mode: 'fatal'
});
// If `encodedData` contains an invalid byte for the windows-1251 encoding,
// instead of replacing it with U+FFFD in the output, an error is thrown.
```
## Notes
[Similar modules for other single-byte legacy encodings are available.](https://www.npmjs.com/browse/keyword/legacy-encoding)
## Author
| [](https://twitter.com/mathias "Follow @mathias on Twitter") |
|---|
| [Mathias Bynens](https://mathiasbynens.be/) |
## License
_windows-1251_ is available under the [MIT](https://mths.be/mit) license.