@konforti/wasm-truncate
v0.0.3
Published
truncate texts on the web using wasm-bindgen
Downloads
3
Maintainers
Readme
wasm truncate
truncate texts by number of lines using wasm-bindgen.
Installation
npm i -S @konforti/wasm-truncateUsage
const truncate = async (elementId: string, lines: number) => {
const module = await import('@konforti/wasm-truncate');
module.run(elementId, lines);
};
truncate('long-text', 1);Development
# Once
rustup target add wasm32-unknown-unknown
cargo +nightly install wasm-bindgen-cli# Run example
npm start