UNPKG

cesr

Version:

[![NPM Version](https://img.shields.io/npm/v/cesr.svg?style=flat)](https://www.npmjs.com/package/cesr) [![NPM License](https://img.shields.io/npm/l/cesr.svg?style=flat)](https://github.com/lenkan/cesr-js/blob/main/LICENSE) [![CI](https://github.com/lenkan

9 lines (8 loc) 220 B
export function encodeUtf8(text) { const encoder = new TextEncoder(); return encoder.encode(text); } export function decodeUtf8(bytes) { const decoder = new TextDecoder(); return decoder.decode(bytes); }