var repo="Xiphos";
var modules=interface.getAllRepoModules(repo);
for (var i = 0; i < modules.length; i++) {
console.log( 'moduleName : ' + JSON.stringify(modules[i]) + '\n');
}
It seems in the code excertp above getAllRepoModules is returning an array of objects, not of strings (as in the current doc)
var repo="Xiphos"; var modules=interface.getAllRepoModules(repo); for (var i = 0; i < modules.length; i++) { console.log( 'moduleName : ' + JSON.stringify(modules[i]) + '\n'); }
It seems in the code excertp above getAllRepoModules is returning an array of objects, not of strings (as in the current doc)