Skip to content

alexandrepletty/moji-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moji-node

🛠️ Installation

To set up the project run the following command

npm install moji-node

or if you use yarn

yarn add moji-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 stringify 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 ➰

Releases

No releases published

Packages

No packages published