Skip to main content
The Deno 2 Release Candidate is here
Learn more

wasm-sort

install

add to deps.ts

export {
    merge_sort_int32array
} from "https://deno.land/x/wasm_sort@1.4.0/mod.ts";

init and run

import {
    merge_sort_int32array
} from './deps.ts';

const array = new Int32Array([5, 4, 3, 2, 1]);
console.log(merge_sort_int32array(array));