![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@jumpn/utils-composite
Advanced tools
Composite utilities (immutability, fp helpers)
NOTE: All functions the functions described in API are curried
type Composite = Array<*> | Object;
type Key = number | string;
type Path = Array<Key>;
Get property value of given key.
Parameters
key
Keycomposite
CompositeReturns value located at the given path or undefined otherwise.
Parameters
path
Pathcomposite
CompositeGet own enumerable keys.
Parameters
composite
CompositeReturns Array<Key>
Returns true if value located at given path is strictly equal to the one specified.
Parameters
path
Pathvalue
anycomposite
CompositeReturns true if key is included in composite's own enumerable ones, or false otherwise.
Parameters
key
Keycomposite
CompositeReturns true if both composites have the same props or false otherwise.
Parameters
c1
Compositec2
CompositeReturns a new composite with the result of having removed the property with the given key.
Parameters
key
Keycomposite
CompositeReturns a new composite with the result of having removed the property located at the given path.
(This does the same as calling updateIn with updater:
() => updateIn.remove
)
Parameters
path
Pathcomposite
CompositeReturns a new composite with the result of having updated the property with the given key with the specified value.
Parameters
key
Keyvalue
anycomposite
CompositeReturns a new composite with the result of having updated the property located at the given path with the specified value.
(This does the same as calling updateIn with updater: () => value
)
Parameters
path
Pathvalue
anycomposite
CompositeReturns a new composite with the same own enumerable props of the one given.
Parameters
composite
CompositeReturns true if both composites are of the same type (Array or Object) and their properties are strictly equal.
Parameters
c1
Compositec2
CompositeReturns a new composite with the result of having updated the property value at the given path with the result of the call to updater function.
Entry removal is supported by returning updateIn.remove
symbol on updater
function.
Parameters
path
Pathupdater
function (prev: any): anycomposite
CompositeMIT :copyright: Jumpn Limited / Mauro Titimoli (mauro@jumpn.com)
FAQs
Composite utilities (immutability, fp helpers)
We found that @jumpn/utils-composite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.