decancer npm downloads

A tiny package that removes common confusables from strings.

Installation

Rust

In your Cargo.toml:

toml decancer = "1.5.4"

Node.js

In your shell:

console $ npm install decancer

In your code:

js const decancer = require('decancer')

Deno

In your code:

ts import decancer from 'npm:decancer'

Bun

In your shell:

console $ bun install decancer

In your code:

js const decancer = require('decancer')

Browser

In your code:

```html

```

C/C++

Download precompiled binaries

Building from source

Prerequisites:

console $ git clone https://github.com/null8626/decancer.git --depth 1 $ cd decancer/bindings/native $ cargo build --release

And the binary files should be generated in the target/release directory.

Examples

JavaScript (Node.js/Deno/Bun)

```js const cured = decancer('vοΌ₯ⓑ𝔂 π”½π•ŒΕ‡β„•ο½™ ţ乇𝕏𝓣')

// cured here is a CuredString object wrapping over the cured string // for comparison purposes, it's more recommended to use the methods provided by the CuredString class.

if (cured.contains('funny')) { console.log('found the funny') }

if ( cured.equals('very funny text') && cured.startsWith('very') && cured.endsWith('text') ) { console.log('it works!') }

console.log(cured.toString()) // 'very funny text' ```

JavaScript (Browser)

```html Decancerer!!! (tm)