PHP 7.4.33
Preview: vanilla.js Size: 1.00 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/zustand/vanilla.js
'use strict';

const createStoreImpl = (createState) => {
  let state;
  const listeners = /* @__PURE__ */ new Set();
  const setState = (partial, replace) => {
    const nextState = typeof partial === "function" ? partial(state) : partial;
    if (!Object.is(nextState, state)) {
      const previousState = state;
      state = (replace != null ? replace : typeof nextState !== "object" || nextState === null) ? nextState : Object.assign({}, state, nextState);
      listeners.forEach((listener) => listener(state, previousState));
    }
  };
  const getState = () => state;
  const getInitialState = () => initialState;
  const subscribe = (listener) => {
    listeners.add(listener);
    return () => listeners.delete(listener);
  };
  const api = { setState, getState, getInitialState, subscribe };
  const initialState = state = createState(setState, getState, api);
  return api;
};
const createStore = (createState) => createState ? createStoreImpl(createState) : createStoreImpl;

exports.createStore = createStore;

Directory Contents

Dirs: 4 × Files: 16
Name Size Perms Modified Actions
esm DIR
- drwxr-xr-x 2025-03-28 11:04:34
Edit Download
- drwxr-xr-x 2025-03-28 11:04:34
Edit Download
react DIR
- drwxr-xr-x 2025-03-28 11:04:34
Edit Download
vanilla DIR
- drwxr-xr-x 2025-03-28 11:04:34
Edit Download
64 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
546 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.04 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
203 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
14.20 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.94 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
934 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
711 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
17.01 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
103 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
352 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.25 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.14 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
0 B lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.53 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
1.00 KB lrw-r--r-- 2025-03-28 11:04:34
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).