UNPKG

@revolist/revogrid

Version:

Virtual reactive data grid spreadsheet component - RevoGrid.

15 lines (14 loc) 322 B
/*! * Built by Revolist OU ❤️ */ /** * Sets the given data on the specified store. * * @param store - The store to set data on. * @param data - The data to set on the store. */ export function setStore(store, data) { Object.entries(data).forEach(([key, value]) => { store.set(key, value); }); }