locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
15 lines (14 loc) • 564 B
JavaScript
export { bsearch } from "./bsearch.js";
export { bsearch_index } from "./bsearch_index.js";
export { compact } from "./compact.js";
export { filter_map } from "./filter_map.js";
export { first } from "./first.js";
export { flatten } from "./flatten.js";
export { group_by } from "./group_by.js";
export { last } from "./last.js";
export { permutation } from "./permutation.js";
export { sample } from "./sample.js";
export { slice_when } from "./slice_when.js";
export { tally } from "./tally.js";
export { uniq } from "./uniq.js";
export { zip } from "./zip.js";