verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
18 lines (14 loc) • 308 B
JavaScript
/**
* Verb <https://github.com/assemble/verb>
*
* Copyright (c) 2014 Jon Schlinkert, contributors.
* Licensed under the MIT license.
*/
;
module.exports = function(config, options) {
options = options || {};
exports.join = function(a, b) {
return a + b;
};
return exports;
};