This commit is contained in:
derpystuff 2023-11-22 16:02:57 +01:00
parent 5c5aba0c48
commit cd5e9ceb4a
6 changed files with 10 additions and 28 deletions

View file

@ -30,8 +30,6 @@ module.exports.timestamp = function(time, flag = "t"){
}
module.exports.stringwrap = function(content = "", length){
console.log(content)
console.log(length)
if(content.length > length) return content.substr(0, length) + '...';
return content;
}