0.0.3 • Published 6 years ago

@konforti/wasm-truncate v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

wasm truncate

truncate texts by number of lines using wasm-bindgen.

Installation

    npm i -S @konforti/wasm-truncate

Usage

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