@revolist/revogrid
Version:
Virtual reactive data grid spreadsheet component - RevoGrid.
16 lines (15 loc) • 362 B
JavaScript
/*!
* 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);
});
}
//# sourceMappingURL=store.utils.js.map