1.0.3 • Published 6 years ago

utf8-to-ansi v1.0.3

Weekly downloads
56
License
MIT
Repository
github
Last release
6 years ago

utf8ToAnsi

A utility to convert utf8 string to ansi windows-874

Installation

yarn add utf8-to-ansi or npm install utf8-to-ansi

Example

To get ansi string from utf8 string

import { utf8ToAnsi } from 'utf8-to-ansi'

const utf8 = 'สวัสดีชาวโลก'
const ansi = utf8ToAnsi(utf8)
console.log(ansi)

To get byte array from utf8 string

import { toByteArray } from 'utf8-to-ansi'

const buffer = new Buffer.from(toByteArray('ทดสอบ สมมุติ'))
console.log(buffer.toString('latin1'))
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago