UNPKG

svelte-generic-crud-table

Version:

<crud-table> renders object-arrays with options-panel and inline edit per row. Dispatches events for ongoing data handling. As self-containing webcomponent or for Svelte in 60KB

7 lines (5 loc) 116 B
function arrayRemove(arr, value) { return arr.filter(function (ele, i) { return i !== value; }); }