wresolver
v0.3.229
Published
Collection of cross-platform routines to resolve complex data structures.
Downloads
179
Readme
module::Resolver
Collection of cross-platform routines to resolve complex data structures.
Try out from the repository
git clone https://github.com/Wandalen/wResolver
cd wResolver
will .npm.install
node sample/trivial/Sample.s
Make sure you have utility willbe
installed. To install willbe: npm i -g willbe@stable
. Willbe is required to build of the module.
To add to your project
npm add 'wresolver@stable'
Willbe
is not required to use the module in your project as submodule.
Sample
let _ = require( 'wresolverextra' );
var src =
{
dir :
{
val1 : 'Hello'
},
}
var resolved = _.resolver.resolve( src, 'dir/val1' );
console.log( resolved );
/*
log : `Hello`
*/