1.0.2 • Published 8 years ago

extract-emoji v1.0.2

Weekly downloads
200
License
MIT
Repository
github
Last release
8 years ago

extract-emoji

Extract emoji from a string

the Gist

import { all, isEmoji, extractEmoji } from 'extract-emoji';

console.log(all[4]); // => 🙂

isEmoji(🙂); // => true

extractEmoji('I am so Happy 🙂 🙂') // => ['🙂', '🙂'];