Skip to content

lffg-archive/charcode-sequence

Repository files navigation

@lffg/charcode-sequence

📜 Character code sequence encoder and decoder.

Build Status NPM Uses TypeScript

Installing

yarn add @lffg/charcode-sequence

# If you're using NPM:
# npm install @lffg/charcode-sequence --save

Basic Usage

import { encode, decode } from '@lffg/charcode-sequence';

encode('Luiz'); // [76, 117, 105, 122]
decode([76, 117, 105, 122]); // "Luiz"

Authors and License

lffg and contributors.

MIT License, see the included MIT file.