1.0.2 • Published 6 years ago

emoji-search_test v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

Emoji Search - Tutorial

Tutorial

How To Use

Install the module:

npm install emoji-search --save

Use in your JavaScript project:

const emojiSearch = require('demo-emoji-search');
console.log(emojiSearch.findEmojis("Hello 🐼! What's up? ✌️"));

Use in your TypeScript project:

import { findEmojis } from 'demo-emoji-search';
const foundEmojis: string[] = findEmojis(`Hello 🐵! What's up? ✌️`);

console.log(foundEmojis);