A portable module that removes common confusables from strings without the use of Regexes. Available for Rust, Node.js, Deno, and the Browser.
Pros:
Con:
In your Cargo.toml
:
toml
decancer = "1.3.3"
In your shell:
console
$ npm install decancer
In your code:
js
const decancer = require('decancer');
In your code:
```ts import init from "https://deno.land/x/decancer@v1.3.3/mod.ts";
const decancer = await init(); ```
In your code:
```js import init from "https://cdn.jsdelivr.net/gh/null8626/decancer@v1.3.3/decancer.min.js";
const decancer = await init(); ```
NOTE: cured output will ALWAYS be in lowercase.
```js const noCancer = decancer('vοΌ₯β‘π π½πΕβο½ Ε£δΉππ£');
console.log(noCancer); // 'very funny text' ```
```rust extern crate decancer; use decancer::Decancer;
fn main() { let instance = Decancer::new(); let output = instance.cure("vοΌ₯β‘π π½πΕβο½ Ε£δΉππ£");
assert_eq!(output, String::from("very funny text")); } ```
If you want to check if the decancered string contains a certain keyword, i recommend using this instead since mistranslations can happen (e.g mistaking the number 0 with the letter O)
```js const noCancer = decancer(someString);
if (decancer.contains(noCancer, 'no-no-word')) console.log('LANGUAGE!!!'); ```
```rust,norun extern crate decancer; use decancer::Decancer;
fn main() { let instance = Decancer::new(); let output = instance.cure("vοΌ₯β‘π π½πΕβο½ Ε£δΉππ£");
if instance.contains(output, "badwordhere") { println!("LANGUAGE!!!"); } } ```
All contributions are welcome. Feel free to fork the project at GitHub! <3
If you want to add, remove, modify, or view the list of supported confusables, you can clone the GitHub repository, and modify it directly with Node.js. Either through a script or directly from the REPL.
```js const reader = await import('./contrib/index.mjs'); const data = reader.default('./core/bin/confusables.bin');
// do something with data...
data.save('./core/bin/confusables.bin'); ```
These are the primary resources that made this project possible.