remove console.log doh! #6634

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed May 26, 2025 at 14:15 UTC 3b2aaccf1be0eb6ade5c9d73b1276c6951d677c3
1 file changed -1
common.js
-1
@@ -424,7 +424,6 @@ module.exports.uniqueArray = function (a) {
424 // Replace placeholders in a string with values from an object or a function
425 module.exports.replacePlaceholders = function (template, values) {
426 return template.replace(/\{(\w+)\}/g, (match, key) => {
427 - console.log('match', match, 'key', key, 'values', values);
427 if (typeof values === 'function') {
428 return values(key);
429 }