js-aid
About
- A Bundle of Javascript util Library to help developers.
- No dependency to other Libraries.
Thanks to whoever use js-aid.
Install
npm install js-aid --save-dev
Getting Started
const aid = require("js-aid");
const obj = { level1: { level2: "level3" } };
const checkNested = aid.checkNested(obj, "level1", "level2");
console.log(checkNested); //true
const getNested = aid.getNested(obj, "level1", "level2");
console.log(getNested); // 'level3'
Contact
- @LinkedIn : https://www.linkedin.com/in/himanshu-dhingra-42a071131/
- @E-mail : h.dhingra008@gmail.com