UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

12 lines 336 B
import { RefinerRulesPane } from './IRefiners'; export function buildKeyText(str) { return { key: str, text: str }; } export function refinerRuleItems() { let options = []; RefinerRulesPane.map(rule => { options.push(buildKeyText(rule)); }); return options; } //# sourceMappingURL=functions.js.map