Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/uasi/emcode

Emoji name (a la GitHub emoji) to char code converter
https://github.com/uasi/emcode

Last synced: about 7 hours ago
JSON representation

Emoji name (a la GitHub emoji) to char code converter

Awesome Lists containing this project

README

        

# emcode

emcode is emoji name (a la [GitHub emoji]) to char code converter.

[GitHub Emoji]: https://github.com/github/gemoji

## Synopsis

```js
var emcode = require('emcode');

emcode.getCharCode('smile'); // => 128516

emcode.replace(':relaxed: and :relieved:', function(code, name, match) {
return `[${code}, ${name}, ${match}]`;
});
// => "[9786, relaxed, :relaxed:] and [128524, relieved, :relieved:]"
```

## Author

Tomoki Aonuma ([@uasi](https://twitter.com))

## License

MIT