1var tar = require('tar'); 2 3exports.add = function (a, b) { 4 return a + b; 5}; 6 7exports.parse = function () { 8 return tar.Parse(); 9}; 10 11