wasm4pm 26.7.1

High-performance process mining algorithms in WebAssembly for JavaScript/TypeScript
Documentation
#[test]
fn check_working_directory() {
    let wd = std::env::current_dir().unwrap();
    println!("Working directory during test: {:?}", wd);
    assert!(wd.to_string_lossy().len() > 0);

    let paths = vec![
        "wasm4pm/tests/fixtures/BPI_2020_Travel_Permits_Actual.xes",
        "wasm4pm/wasm4pm/tests/fixtures/BPI_2020_Travel_Permits_Actual.xes",
        "tests/fixtures/BPI_2020_Travel_Permits_Actual.xes",
        "tests/fixtures/BPI_2020_Domestic_Declarations.xes",
        "./BPI_2020_Travel_Permits_Actual.xes",
    ];

    for path in paths {
        let exists = std::path::Path::new(path).exists();
        println!("{}: {}", path, exists);
    }
}