UNPKG

@runicjs/runic

Version:

A lightweight, type-safe vanilla JS state management library

8 lines (7 loc) 184 B
/** * Change the state back to the initial state. * @param store - The store to reset. */ export default function resetState(store) { store.setState(store.getInitialState()); }