Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lffg-archive/charcode-sequence
📜 Character code sequence encoder and decoder.
https://github.com/lffg-archive/charcode-sequence
Last synced: 5 days ago
JSON representation
📜 Character code sequence encoder and decoder.
- Host: GitHub
- URL: https://github.com/lffg-archive/charcode-sequence
- Owner: lffg-archive
- License: mit
- Created: 2019-07-01T14:17:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T04:28:35.000Z (about 2 years ago)
- Last Synced: 2024-12-12T17:45:00.927Z (25 days ago)
- Language: JavaScript
- Homepage: https://npmjs.org/package/@lffg/charcode-sequence
- Size: 1.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `@lffg/charcode-sequence`
📜 Character code sequence encoder and decoder.
[![Build Status](https://circleci.com/gh/lffg/charcode-sequence.svg?style=svg)](https://circleci.com/gh/lffg/charcode-sequence)
[![NPM](https://img.shields.io/npm/v/@lffg/charcode-sequence.svg?logo=npm)](https://npmjs.org/package/@lffg/charcode-sequence)
![Uses TypeScript](https://img.shields.io/badge/Uses-Typescript-294E80.svg)## Installing
```shell
yarn add @lffg/charcode-sequence# If you're using NPM:
# npm install @lffg/charcode-sequence --save
```## Basic Usage
```typescript
import { encode, decode } from '@lffg/charcode-sequence';encode('Luiz'); // [76, 117, 105, 122]
decode([76, 117, 105, 122]); // "Luiz"
```## Authors and License
[lffg](https://github.com/lffg) and [contributors](https://github.com/lffg/charcode-sequence/graphs/contributors).
MIT License, see the included [MIT](https://github.com/lffg/charcode-sequence/blob/master/LICENSE) file.