verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
18 lines (14 loc) • 324 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.lowercase = function(src) {
return src.toLowerCase();
};
return exports;
};