1.0.6 • Published 4 years ago
ak-hasattr v1.0.6
hasattr :mag_right:
Search key, in a deep json object or array
Please consider donating, if you like my work
Installation
Using npm
npm install ak-hasattrUsing yarn
yarn add ak-hasattrUsage
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));
// falseContributing
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 🙌