| Current Path : /var/node/inatote/Inatote-Backend/node_modules/toml/ |
| Current File : /var/node/inatote/Inatote-Backend/node_modules/toml/index.js |
var parser = require('./lib/parser');
var compiler = require('./lib/compiler');
module.exports = {
parse: function(input) {
var nodes = parser.parse(input.toString());
return compiler.compile(nodes);
}
};