Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dafrok/if-emoji

Check a character if it is a correctly supported emoji.
https://github.com/dafrok/if-emoji

emoji

Last synced: about 5 hours ago
JSON representation

Check a character if it is a correctly supported emoji.

Awesome Lists containing this project

README

        

# if-emoji

Check a character if it is a correctly supported emoji.

## Install

```
$ npm i if-emoji
```

## Usage

```js
import ifEmoji from 'if-emoji'

ifEmoji('蛤') // => false
ifEmoji('🐸') // => If your system / browser supports this emoji character correctly, the returned value will be true.
```