wresolver

Collection of cross-platform routines to resolve complex data structures.

Usage no npm install needed!

<script type="module">
  import wresolver from 'https://cdn.skypack.dev/wresolver';
</script>

README

module::Resolver status experimental

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`
*/