1.0.2 • Published 1 year ago
@npmteam2024/debitis-aspernatur-fugiat v1.0.2
@npmteam2024/debitis-aspernatur-fugiat
Install
Do not use it if you can use maps.
yarn add @npmteam2024/debitis-aspernatur-fugiat
or if npm is package manager of your choice
npm install @npmteam2024/debitis-aspernatur-fugiat --save
Usage
I want to create a new object
import box from '@npmteam2024/debitis-aspernatur-fugiat';
const trackedObj = box({});
I have an existing object
import box from '@npmteam2024/debitis-aspernatur-fugiat';
const myObj = {
a: true,
b: void 0,
};
const trackedObj = box(myObj);
// alternatively if you want to provide a custom orer
const trackedReversedObj = box(myObj, ['b', 'a']);