Public vals
136
countArray
@nbbaier
Script
Example usage: import countArray from "https://esm.town/v/nbbaier/countArray";
const arr = ["a", "b", "c", "d", "d", "a", "a"];
const counted = countArray(arr, "item");
// counted =
// [
// { item: "a", count: 3 },
// { item: "b", count: 1 },
// { item: "c", count: 1 },
// { item: "d", count: 2 }
// ]