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.
- Host: GitHub
- URL: https://github.com/t-mullen/encodji
- Owner: t-mullen
- Created: 2017-06-06T07:00:56.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T07:08:32.000Z (about 8 years ago)
- Last Synced: 2025-01-25T08:48:34.527Z (5 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 }
```