UNPKG

216 BJavaScriptView Raw
1/**
2 * Builds the parameters object disable one or multiple controls.
3 */
4export const disableControls = (controls = []) =>
5 Object.fromEntries(controls.map((control) => [control, { control: { disable: true } }]));