1.0.0 ā€¢ Published 3 years ago

moji-node v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Emoji-node

npm.io npm.io

šŸ’» Website

šŸ› ļø Installation

To set up the project run the following command

npm install emoji-node

or if you use yarn

yarn add emoji-node

šŸ“° Usage

Import into the file where you want to use this dependency:

const emojie = require('moji-node')

or

const {stringify, parse} = require('moji-node')

šŸŖ„ Stringify

the X function allows you to transform a text with emojis into code to be able to easily save them in a database

To transform a text that includes emojis you must use the stringify function :

let text = 'Hello āž°'
stringify(text)

He will return :

Hello [27B0]

šŸ”Ž Parse

The parse function is used when you want to transform a text with an emoji code

To display the text that has an emoji use the parse function

let text = 'Hello [27B0]'
parse(text)

He will return :

Hello āž°