Package Exports
Readme
Table of contents
Installation
Your Node.js must be version 16.6.0 or higher!
# Using npm:
npm install object.mn --save
# Using yarn:
yarn add object.mnIntroduction
// Supports ES6 and CommonJS
import ObjectManager from 'object.mn';
let myObject = {},
/**
* You can use these parameters below to configure the manager:
*
* @param {Object} [object] Source object to save the information.
* @param {?String} [split] Query path separator.
*/
myObjectManager = new ObjectManager(myObject, /* '/' */);
console.log(myObjectManager);Footer
To learn more how to use npm functions go to table of contents
