1.0.0 • Published 4 years ago

ekas-json-data-processor v1.0.0

Weekly downloads
3
License
-
Repository
-
Last release
4 years ago

Data Processing WebAssembly Module for Ekas Auto Data Processing Project

Description

This package is the data processing module written in Rust for Ekas Auto Data Processing Project

The package export one function do_json_processing to be called in Javascript file.

The parameter of this function should be a javascript object with all values as strings.

Usage Example

The following snippets gives an example of loading this package and call the do_json_processing function.

// Define some input data
let input = {};
// Import the package from the folder and do the processing
import("./pkg").then((wasm) => {
	let output = wasm.do_json_processing(input);
	console.log(output);
});