mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
* refactor: replace leftPad on native implementation padStart * refactor: migrate on new Buffer API
16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
var File = require('vinyl');
|
|
|
|
/**
|
|
* This is a theme only used by documentation to test custom theme
|
|
* support.
|
|
*/
|
|
module.exports = function(comments, options, callback) {
|
|
return Promise.resolve([
|
|
new File({
|
|
base: '/',
|
|
path: '/index.html',
|
|
contents: Buffer.from('Hello world')
|
|
})
|
|
]);
|
|
};
|