ini support for JS Transformers
npm i --save jstransformer-ini
npm test
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))
//=> '{"foo": {"bar": "baz", "qux": true}}'
var promise = ini.renderFileAsync('./path/to/config.ini', opts);
promise.then(function(data) {
console.log(JSON.parse(data.body));
//=> '{"foo": {"bar": "baz", "qux": true}}'
});
testit framework, is-kindof and assert.Copyright (c) 2015 JSTransformers, Charlike Mike Reagent, contributors.
Released under the MIT license.
Proudly generated by docks(1), April 10, 2015