JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19
  • Score
    100M100P100Q64621F
  • License MIT

An npm with various functions to manage objects.

Package Exports

    Readme

    Object.mn

    NPM version NPM downloads NPM size NPM license

    NPM Banner

    An npm with various functions to manage objects.

    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.mn

    Introduction

    // 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