Anton 806defa191
refactoring (#1376)
* refactor: replace leftPad on native implementation padStart

* refactor: migrate on new Buffer API
2021-05-04 16:25:36 +03:00

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')
})
]);
};