archieve-projects/微信机器人/node_modules/encode-utf8
Li Wei 6d6bcf309d backup: 2025-02-24 2025-02-24 15:22:12 +08:00
..
index.d.ts backup: 2025-02-24 2025-02-24 15:22:12 +08:00
index.js backup: 2025-02-24 2025-02-24 15:22:12 +08:00
package.json backup: 2025-02-24 2025-02-24 15:22:12 +08:00
readme.md backup: 2025-02-24 2025-02-24 15:22:12 +08:00
test.js backup: 2025-02-24 2025-02-24 15:22:12 +08:00

readme.md

Encode UTF8

Turn a string into an ArrayBuffer by using the UTF8 encoding.

Installation

npm install --save encode-uf8

Usage

const encodeUtf8 = require('encode-utf8')

console.log(encodeUtf8('Hello, World!'))
//=> ArrayBuffer { byteLength: 13 }

console.log(encodeUtf8('🐵 🙈 🙉 🙊'))
//=> ArrayBuffer { byteLength: 19 }

API

encodeUtf8(input: string): ArrayBuffer

Returns an ArrayBuffer with the string represented as UTF8 encoded data.