An open API service indexing awesome lists of open source software.

https://github.com/t-mullen/encodji

Serialize Javascript objects into user-friendly emoji strings.
https://github.com/t-mullen/encodji

Last synced: 3 months ago
JSON representation

Serialize Javascript objects into user-friendly emoji strings.

Awesome Lists containing this project

README

        

# encodji
Serialize Javascript objects into user-friendly emoji strings.

## Install

Node or Browserify:
```
npm install --save encodji
```

Script tag:
```html

```

## Usage

```javascript
var emojiString = encodji.encode({ a:1 }) // "🙏💞☝️👧👩👨👍💆👎🙌👎💛💪💨💨💨"
var object = encodji.decode(emojiString) // { a: 1 }
```