Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
)(function (authors, articles, templates) {
var group = Do.combo(function() {
next("Done!\n" + Array.prototype.map.call(arguments, function (args) {
return args[0] + " - " + args[1];
}).join("\n"))
});
function write_file(filename, content) {
var cb = group.add();
fs.writeFile(filename, content)(function () {
cb(new Date(), " Wrote " + content.length + " bytes to " + filename);
}, error_handler);
}
var Helpers = {
github: function (name) {
return "http://github.com/" + name;
},