UNPKG

svelte-command-palette

Version:

A beautiful, accessible, and fully customizable command palette for Svelte 5 applications.

11 lines (10 loc) 273 B
const createActionMap = (commands = []) => { return commands.reduce((acc, curr) => { const { actionId = '' } = curr; if (actionId !== null) { acc[actionId] = curr; } return acc; }, {}); }; export default createActionMap;