Files
portfolio2023/build/node_modules/readme-badger/lib/plaintext.js
T
2023-11-24 22:35:41 +01:00

11 lines
253 B
JavaScript

/* jshint node:true */
"use strict";
/**
* Sticks a url at the bottom of the page. Simple.
*/
module.exports = function(content, badgeUrl, linkUrl) {
var plainUrl = linkUrl.split('?')[0];
return content + '\nJoin the chat: '+ plainUrl + '\n';
};