You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RELOG/node_modules/zustand/esm/middleware/immer.js

13 lines
367 B

import { produce } from 'immer';
const immerImpl = (initializer) => (set, get, store) => {
store.setState = (updater, replace, ...a) => {
const nextState = typeof updater === "function" ? produce(updater) : updater;
return set(nextState, replace, ...a);
};
return initializer(store.setState, get, store);
};
const immer = immerImpl;
export { immer };