UNPKG

fancy-text-converter

Version:

Converts a given text from https://lingojam.com/FancyTextGenerator to it's normal string equivalent

28 lines (18 loc) 773 B
# Fancy Text Converter Fancy text converter is a node module to convert strings generated by [Fancy Text Generator](https://lingojam.com/FancyTextGenerator) to normal strings ## Installation Use the package manager [npm](https://www.npmjs.com/) to install fancy text converter. ```bash npm install fancy-text-converter ``` ## Usage ```js const ftc = require('fancy-text-converter'); ftc.normalise('ℌ𝔢𝔩𝔩𝔬') //returns 'Hello' ftc.normalise('𝕎𝕠𝕣𝕝𝕕') //returns 'World' ``` ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate. ## License [MIT](https://choosealicense.com/licenses/mit/)