1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! WebAssembly bindings for liblevenshtein.
//!
//! This module provides JavaScript-friendly APIs via wasm-bindgen for use in
//! browsers and Node.js environments.
//!
//! # Features
//!
//! - **Distance Functions**: `levenshtein()`, `damerau_levenshtein()`
//! - **Dictionaries**: `WasmDoubleArrayTrie`, `WasmDynamicDawg`
//! - **Transducers**: `WasmTransducer` for fuzzy search
//! - **Phonetic Rules**: `WasmRuleSet` (with `wasm-phonetic` feature)
//!
//! # Usage from JavaScript
//!
//! ```javascript
//! import init, { WasmTransducer, levenshtein } from 'liblevenshtein';
//!
//! async function main() {
//! await init();
//!
//! // Distance functions
//! console.log(levenshtein("hello", "helo")); // 1
//!
//! // Fuzzy search with transducer
//! const trans = new WasmTransducer(["hello", "help", "world"], "standard");
//! const results = trans.query("helo", 2);
//! console.log(results); // [{ term: "hello", distance: 1 }]
//! }
//! ```
pub use *;
pub use *;
pub use *;
pub use *;
use *;
/// Initialize the WASM module.
///
/// This function sets up panic hooks for better error messages in the browser console.
/// It is automatically called when the module loads, but can be called explicitly
/// if needed.
/// Get the library version.