📜 Character code sequence encoder and decoder.
yarn add @lffg/charcode-sequence
# If you're using NPM:
# npm install @lffg/charcode-sequence --save
import { encode, decode } from '@lffg/charcode-sequence';
encode('Luiz'); // [76, 117, 105, 122]
decode([76, 117, 105, 122]); // "Luiz"
lffg and contributors.
MIT License, see the included MIT file.