0.0.3 • Published 7 months ago

@3-/utf8 v0.0.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
7 months ago

@3-/utf8

test/main.coffee :

#!/usr/bin/env coffee

import utf8e from '@3-/utf8/utf8e'
import utf8d from '@3-/utf8/utf8d'
import autoe from '@3-/utf8/autoe'

console.log utf8d utf8e '测试'

console.log autoe '车'
console.log autoe Buffer.from [1,2,3]

output :

测试
Uint8Array(3) [ 232, 189, 166 ]
<Buffer 01 02 03>