1.0.3 • Published 2 years ago

utf8-to-win1251 v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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