smile2emoji

Plugin to convert from text smile to emoticons. Emoji from punctuation

Usage no npm install needed!

<script type="module">
  import smile2emoji from 'https://cdn.skypack.dev/smile2emoji';
</script>

README

Smile2Emoji NPM Module

npm version FOSSA Status License: MIT Maintainability

smile2emoji

Convert all the smiley to fantastic emoticons!

With this simple and little module you can convert the smiles in your text to emoji. :) or :D or <3 will become emoticons! Ideal for input, chats and so on, where you don't want an emoji picker but a simpler solution.

Very quick test usage: https://codepen.io/emish89/pen/YzGrvVK

Happy usage =)

Installation

npm i smile2emoji

Usage

Right now, there are 2 simple ways to use it.

With the function to get the data from the map:

import { checkText } from 'smile2emoji'

...

const text = checkText(':)');
console.log(text) //prints '😊'

//OR 

const text = checkText('i like bananas :)');
console.log(text) //prints 'i like bananas 😊'

Or from the map:

import { emojiMap } from 'smile2emoji'

...

const text = ':)';
const emoji = emojiMap[text];
console.log(emoji) //prints '😊'

License

MIT © Federico Ballarini

FOSSA Status