verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
31 lines (24 loc) • 560 B
JavaScript
/**
* grunt-readme
* Copyright (c) 2014, Jon Schlinkert, contributors
* Licensed under the MIT license.
*/
;
// Custom mixins
module.exports = function(options) {
options = options || {};
options.customProp = options.customProp || '';
exports.customMixin = function(src) {
return src + ' worked!';
};
exports.customProp = function() {
return options.customProp;
};
exports.concat = function(a, b) {
return a + b;
};
exports.lowercase = function(src) {
return src.toLowerCase();
};
return exports;
};