@ptkhanh94npm/ex-explicabo-animi

1.0.0 • Public • Published

@ptkhanh94npm/ex-explicabo-animi npm NPM Downloads

Grab Wizard is a lightweight JavaScript package for navigating and retrieving values from nested data structures.

Install

You can install the package using npm:

npm install @ptkhanh94npm/ex-explicabo-animi

Usage

const { grabValue, grabPath } = require("@ptkhanh94npm/ex-explicabo-animi");

var person = {
  firstName: "Ali",
  lastName: "Parsa",
  age: 21,
  info: {
    address: {
      city: 'New York',
      zip: '10001',
    }
  }
};

console.log(grabValue(person, "info.city", "default value")) //=> 'New Yourk'
console.log(grabPath(person, "info.city", "default value")) //=> '.info.address.city' 

Example

You can grab value or path without select parents:

const { grabValue, grabPath } = require("@ptkhanh94npm/ex-explicabo-animi");

var sample_1 = {
  firstName: "Ali",
  lastName: "Parsa",
  age: 21,
  info: {
    address: {
      city: 'New York',
      zip: '10001',
    }
  }
};

var sample_2 = {
  firstName: "Ali",
  lastName: "Parsa",
  age: 21,
  info: {
    location: {
      city: 'Canada',
      zip: '10001',
    }
  }
};

console.log(grabValue(sample_1, "info.city")) //=> 'New York'
console.log(grabPath(sample_2, "info.city")) //=> '.info.address.city'

console.log(grabValue(sample_2, "info.city")) //=> 'Canada'
console.log(grabPath(sample_2, "info.city")) //=> '.info.location.city'

console.log(grabValue(sample_2, "info.wrong","not found!")) //=> 'not found!'

Readme

Keywords

Package Sidebar

Install

npm i @ptkhanh94npm/ex-explicabo-animi

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

16.4 kB

Total Files

10

Last publish

Collaborators

  • skylerlabsventure