mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
18 lines
537 B
JavaScript
18 lines
537 B
JavaScript
/**
|
|
* @param {string} title
|
|
* @param {string[]} description
|
|
* @param {Date} date
|
|
* @param {string[]} content
|
|
* @returns {string}
|
|
*/
|
|
const withBanner = (title, description, date, content) => {
|
|
return `########################################
|
|
# ${title}
|
|
${description.map(line => `# ${line}`).join('\n')}
|
|
# Last Updated: ${date.toISOString()}
|
|
# Size: ${content.length}
|
|
########################################\n` + content.join('\n') + '\n################# END ###################\n';
|
|
};
|
|
|
|
module.exports.withBanner = withBanner;
|