Skip to content

Orange-OpenSource/getDeepProperty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

get-deep-property

license version npm downloads

getDeepProperty looks deep for the value of a plain JavaScript object property

  • Gives access to any nested named property of plain objects
  • Uses exclusively a dot separated properties names list, in a string
  • Array content can be addressed through index
  • Returns the property value or undefined if it does not exist
  • It should never throw an exception
  • No dependency

Note: it comes with its own super tiny, super simple test framework…

Quick start

Install

Use npm as usual to install this package:

npm install @orange-opensource/get-deep-property

Or clone it from GitHub:

$ git clone https://github.com/Orange-OpenSource/getDeepProperty.git
Cloning into 'getDeepProperty'...
[…]

Syntax

result = getDeepProperty(sourceObject, propertyPath)

Parameters:

  • sourceObject: A JavaScript plain object with nested properties
  • propertyPath: The deep name of the wanted property, as a string with dotted notation

Usage

In the file requiring the tool, just add a line like:

const getDeepProperty = require("@orange-opensource/get-deep-property");

Then you can use the only provided function as follow:

let value = getDeepProperty(sourceObject, 'path.to.a.property');

Examples

With the following object:

{
  part: "main",
  header: {
    name: "x-example",
    type: "string"
  }
}

And the property list named "header.name"

The result will be "x-example"

Another working example:

  const getDeepProperty = require("@orange-opensource/get-deep-property");

  const obj = {
    a: {
      b: true,
      c: 42
    }
  };

  const propertyPath = 'a.c';
  console.log("Result:", getDeepProperty(obj, propertyPath));

When ran, the result will simply be:

Result: 42

See the test/getDeepProperty.unit.js file for other examples.

Contributing

Please report any bug or feature request by opening an issue.

Note:

One important design goal of this module is to keep it very small and simple. So please have in mind this principle before creating a feature request.

Building docs

A builtin documentation is available in the code (and must be maintained by contributors). Most IDEs will use this documentation to display usage guide for this module.

You may generate an HTML version of the documentation with the help of JSDoc.

To generate the doc, just follow below steps:

  1. install jsdoc with (see its documentation for details)

    $ npm install -g jsdoc
  2. create a configuration file (e.g. jsdoc.conf.json) in order to, at least, enable the Markdown plugin

      {
         "plugins": ["plugins/markdown"]
      }
  3. Generate the documentation with command:

    $ jsdoc --configure /path/to/jsdoc.conf.json --access all --readme README.md --destination /path/to/html/doc .

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API, even when very simple. You can run unit tests with the following command:

$ npm test

Any file in the test directory suffixed with .unit.js will be ran.

Submitting code

Before submitting a Pull Request, please check that your work follows these requirements:

  1. All unit tests are up to date and OK
  2. The documentation is up to date
  3. Your commit follows the Conventional Commits guidelines
  4. You agree to the Developer Certificate of Origin by signing-off your commit (use the -s option for git commit)

License

This code is released under the terms of the BSD 3-clause license

Copyright (c) 2022 Orange SA

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

Small JS tool to extract the value of a property buried into nested objects

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published