typed-collections
Advanced tools
A collection utility module for TypeScript
Weekly downloads
Readme
A collection utility module for TypeScript
npm install typed-collections
import { List } from "typed-collections";
const list = List.fromArray([
{ id: "1", data: 1000 },
{ id: "2", data: 2000 }
]);
const idMap = list.toIDMap();
console.log(idMap.getOrFail("1"));
MIT
A collection utility module for TypeScript
The npm package typed-collections receives a total of 72 weekly downloads. As such, typed-collections popularity was classified as not popular.
We found that typed-collections demonstrated a healthy version release cadence and project activity. It has 2 open source maintainers collaborating on the project.