
ini support for JS Transformers
Install
npm i --save jstransformer-ini
npm test
Usage
For more use-cases see the tests
var ini = require('jstransformer')(require('jstransformer-ini'));
var opts = {};
var result = ini.render('[foo]\nbar = "baz"\nqux = true', opts);
console.log(JSON.parse(result.body))
var promise = ini.renderFileAsync('./path/to/config.ini', opts);
promise.then(function(data) {
console.log(JSON.parse(data.body));
});
Related
License 
Copyright (c) 2015 JSTransformers, Charlike Mike Reagent, contributors.
Released under the MIT license.
Proudly generated by docks(1), April 10, 2015