const conversion = require('@groupdocs/groupdocs.conversion')

const licensePath = "GroupDocs.Search.lic";
const license = new conversion.License()
license.setLicense(licensePath);

// Load the input CSV file
const converter = new conversion.Converter("input.csv");

// Set the convert options for Xml format
const options = new conversion.WebConvertOptions();
options.setFormat(WebFileType.Xml);
 
// Save output Xml to disk
converter.convert("output.xml", options);

console.log('The end of process.');
process.exit(0);