Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

utf8-to-win1251

GregorHorvatH26ISC1.0.3

Converts unicode text to windows-1251

convert, text, unicode, utf8, to, windows-1251, win1251

readme

Installation

Via npm:

npm install utf8-to-win1251

Via yarn:

yarn add utf8-to-win1251

In a browser or in Node.js:

import unicodeToWin1251 from 'utf8-to-win1251';

API

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.

import unicodeToWin1251 from 'utf8-to-win1251';
import saveAs from 'save-as';

const win1251Array = unicodeToWin1251('Доброго дня!');
const blob = new Blob([win1251Array], {
  type: 'text/plain;charset=windows-1251',
});

saveAs(blob, 'test-file.txt');

text editor example of windows-1251 converted text