UNPKG

bits-ui

Version:

The headless components for Svelte.

11 lines (10 loc) 238 B
export function getOptionUpdater(options) { return function (key, value) { if (value === undefined) return; const store = options[key]; if (store) { store.set(value); } }; }