discord-emoji-convert
Advanced tools
Comparing version 1.3.1 to 1.4.0
@@ -89,2 +89,3 @@ | ||
// This code may feel inefficient, bulky, and horrible all at the same time. That's ok, It serves its purpose. - Jacob Snarr |
{ | ||
"name": "discord-emoji-convert", | ||
"version": "1.3.1", | ||
"_from": "discord-emoji-convert", | ||
"_id": "discord-emoji-convert@1.3.1", | ||
"_inBundle": false, | ||
"_integrity": "sha512-B2NB9NeXyRIFEXfooxfdlb17L4MmkCagzd1uXRTVVVnSy6da+rQlFzrGSkoVObxYtC7xpU/MOvav36r5Xg9wTg==", | ||
"_location": "/discord-emoji-convert", | ||
"_phantomChildren": {}, | ||
"_requested": { | ||
"type": "tag", | ||
"registry": true, | ||
"raw": "discord-emoji-convert", | ||
"name": "discord-emoji-convert", | ||
"escapedName": "discord-emoji-convert", | ||
"rawSpec": "", | ||
"saveSpec": null, | ||
"fetchSpec": "latest" | ||
}, | ||
"_requiredBy": [ | ||
"#USER", | ||
"/" | ||
], | ||
"_resolved": "https://registry.npmjs.org/discord-emoji-convert/-/discord-emoji-convert-1.3.1.tgz", | ||
"_shasum": "72249c816d002a14f477eba6389541d1af82f7f2", | ||
"_spec": "discord-emoji-convert", | ||
"_where": "D:\\Owner\\Documents\\GitHub\\SnarrBot", | ||
"author": { | ||
"name": "JacobSnarr" | ||
}, | ||
"bundleDependencies": false, | ||
"dependencies": {}, | ||
"deprecated": false, | ||
"description": "A very simple Text to Emoji converter for Discord", | ||
"main": "index.js", | ||
"scripts": {}, | ||
"keywords": [ | ||
"discord" | ||
], | ||
"author": "JacobSnarr", | ||
"license": "ISC", | ||
"dependencies": {} | ||
"main": "index.js", | ||
"name": "discord-emoji-convert", | ||
"scripts": {}, | ||
"version": "1.4.0" | ||
} |
@@ -16,8 +16,8 @@ [![NPM](https://nodei.co/npm/discord-emoji-convert.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/discord-emoji-convert/) | ||
# Supported Characters | ||
```abcdefghijklmnopqrstuvwxyz1234567890+-x*/$ ``` | ||
```abcdefghijklmnopqrstuvwxyz1234567890+-x*/$!? ``` | ||
This includes uppercase characters since all characters are converted to lowercase in order for the Discord Emojis to work. "/" is converted to the Discord Division Emoji and spaces are simply just lengthened to be three spaces. | ||
# Example | ||
Inserting ```console.log(emoji.bigText("SNARR"));``` into your code, this module will output the following string: | ||
Inserting ```console.log(emojiConvert.bigText("SNARR"));``` into your code, this module will output the following string: | ||
```:regional_indicator_s: :regional_indicator_n: :regional_indicator_a: :regional_indicator_r: :regional_indicator_r:``` |
4818