You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A small, fast and scalable bearbones state-management solution using simplified flux principles. Has a comfy API based on hooks, isn't boilerplatey or opinionated.
This relates to the 'module-detection' feature described in the following issue:
Overview
zustand
is a state management library used in React apps:Code
Unminifying this source (Ref):
Original (prettified)
Source (unpacked)
Transformed (unminified)
Searching for some of those symbols on GitHub code search:
Of those results, this looks the most promising:
module-92280.js
ismodule-97838.js
isReact
use-sync-external-store-shim/with-selector.production.min.js
const { useDebugValue } = require(70079);
module-70079.js
is literally justmodule.exports = require(99504);
module-99504.js
isreact.production.min.js
From that, it seems the
Z$0
function iscreateStore
, which in this bundled code, is imported from97703
:Original (prettified)
Source (unpacked)
Transformed (unminified)
Which based on the above, seems to correspond to:
The text was updated successfully, but these errors were encountered: