verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
18 lines (16 loc) • 402 B
JavaScript
/**
* Verb <https://github.com/assemble/verb>
* Generate markdown documentation for GitHub projects.
*
* Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors.
* Licensed under the MIT license.
*/
/**
* Get the current time using `.toISOString()`
* @name function timetamp()
* @return {String}
* @api Public
*/
module.exports = function () {
return new Date().toISOString();
};