thaldrin/utils/src/format.js

12 lines
171 B
JavaScript
Raw Normal View History

2019-10-09 16:19:30 +00:00
module.exports = {
2019-11-10 08:42:09 +00:00
bold: function(str) {
return `**${str}**`;
},
italic: function(str) {
return `*${str}*`;
},
code: function(str) {
return `\`${str}\``;
}
2019-10-09 16:19:30 +00:00
};