ak-hasattr

1.0.6 • Public • Published

hasattr 🔎

Build Status NPM Downloads Package Size NPM Version Contributors Commit

Search key, in a deep json object or array

Buy Me A Coffee Become a Patron!

Please consider donating, if you like my work

Installation

Using npm

npm install ak-hasattr

Using yarn

yarn add ak-hasattr

Usage

const hasAttr = require('ak-hasattr');
const JSON = {
  'name': 'Arshad Kazmi',
  'profile': {
    'github': {
      'username': 'arshadkazmi42',
      'repos': [
        {
          'repo_name': 'hasattr',
          'url': 'https://github.com/arshadkazmi42/hasattr',
        },
      ],
    },
    'twitter': {
      'username': 'arshadkazmi42',
    },
  },
};

console.log(hasAttr('name', JSON));
// true

console.log(hasAttr('repo_name', JSON));
// true

console.log(hasAttr('something', JSON));
// false

Contributing

We are constantly working on improving hasattr and we need all the help we can get.

You can contribute to this project by giving suggestions, fixing open issues or by implementing a new feature. Read our contibution guide here

Contributors

Thank you to all the contributors who help in making this project better 🙌

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i ak-hasattr

    Weekly Downloads

    1

    Version

    1.0.6

    License

    MIT

    Unpacked Size

    5.34 kB

    Total Files

    4

    Last publish

    Collaborators

    • arshadkazmi42