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
Markdown
Fancy text converter is a node module to convert strings generated by [Fancy Text Generator](https://lingojam.com/FancyTextGenerator) to normal strings
Use the package manager [npm](https://www.npmjs.com/) to install fancy text converter.
```bash
npm install fancy-text-converter
```
```js
const ftc = require('fancy-text-converter');
ftc.normalise('ℌ𝔢𝔩𝔩𝔬') //returns 'Hello'
ftc.normalise('𝕎𝕠𝕣𝕝𝕕') //returns 'World'
```
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.
[](https://choosealicense.com/licenses/mit/)