UNPKG

verb

Version:

Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.

18 lines (14 loc) 308 B
/** * Verb <https://github.com/assemble/verb> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT license. */ 'use strict'; module.exports = function(config, options) { options = options || {}; exports.join = function(a, b) { return a + b; }; return exports; };