UNPKG

word-vault

Version:

A lightweight JavaScript package for English word definitions and collections.

10 lines (9 loc) 296 B
import { CollectionMap } from "../../data/collections/index.js"; export function findCollection(slug) { const collection = CollectionMap[slug]; if (!collection) { console.debug(`Collection with slug "${slug}" does not exist.`); return null; } return collection; }