mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 13:52:25 +02:00
11 lines
253 B
JavaScript
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';
|
|
};
|