UNPKG

@revolist/revogrid

Version:

Virtual reactive data grid spreadsheet component - RevoGrid.

15 lines (14 loc) 314 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) { for (const key of Object.keys(data)) { store.set(key, data[key]); } }