UNPKG

word-vault

Version:

A lightweight JavaScript package for English word definitions and collections.

9 lines (8 loc) 229 B
import { findCollection } from "./findCollection.js"; export function getCollectionCategories(id) { const collection = findCollection(id); if (!collection) { return null; } return collection.categories; }