Valky
A simple utility to deep search an object and return a key of a value.
Quickstart
Install the module from npm as shown
npm install valky
Define an object as shown
var myObject = {
name: 'Application',
port: 9001,
database: {
host: 'localhost',
ports: {
one: 27012,
two: 27013
},
user: 'user',
pass: 'pass'
}
};
To get the key of a specific value, use the valky lib as shown
var valky = require('valky');
var appKey = valky(myObject, 'Application');
var dbUserKey = valky(myObject, 'user');
var dbPassKey = valky(myObject, 'pass');
var dbHostOne = valky(myObject, 27012);
var dbHostTwo = valky(myObject, 27013);
console.log(appKey);
console.log(dbUserKey);
console.log(dbPassKey);
console.log(dbHostOne);
console.log(dbHostTwo);
Valky also works with custom delimiters, specify it as a third parameter.
var valky = require('valky');
var dbHostOne = valky(myObject, 27012, '_');
var dbHostTwo = valky(myObject, 27013, '_');
console.log(dbHostOne);
console.log(dbHostTwo);
NOTE: If the value of two keys are same, the key-val pair first detected takes precedence.
Developers
Clone the repo using git clone https://github.com/whoisandie/valky.git. Valky tests are written in mocha. To run the tests, install the dependencies and run the
npm test` command as shown.
Once you have cloned, cd into the directory and run the below commands.
npm install
npm test
Contribution
Want to make a contribution ? Cool! Fork the repo, tweak, add your changes, submit a pull request :) And yes contributions will be appreciated !
License
The MIT License (MIT)
Copyright (c) 2014 Bhargav Anand
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.