Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/toml/
Upload File :
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);
  }
};