1.0.2 • Published 2 years ago

converting-strings v1.0.2

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

Converting Strings

Converting Strings is a project that was made to facilitate various string conversions.

Usage

This module has only one function available, which accepts two parameters: str (text to be modified) and type (type of modification).

Some modifiers may have multiple conversions depending on the text.

Example of use

const ConvertingStrings = require('converting-strings');

const convertedString = ConvertingStrings('Hello, world!', 'uwufy');
console.log(convertedString); // Output: Hewwo, wowwd! (/^▽^)/

Type of convertions

TypeDescription
CheemsifyCheemsify the given text.
EmojifyConverts a given text into emojis (can be quite buggy).
InvertWordsInvert the words of the given text.
IsifyReplace all vowels with the letter i.
RandomizeLettersRandomize the position of the letters of each word in the given text.
RandomizeWordsRandomize the position of words in the given text.
TranslatableVillagerifyVillagerify the given text (translatable).
TranslateVillagerifyTranslate the villagerified text.
UwufyUwufy the given text.
VillagerifyVillagerify the given text (simpler but not translatable)

Credits