This commit is contained in:
Rick van Drongelen 2025-07-03 16:29:23 +02:00
parent 9e4d6f1b70
commit 87cb7542cd
No known key found for this signature in database

View file

@ -191,9 +191,9 @@ class Prometheus {
/** /**
* Sort the tags alphabetically, case-insensitive. * Sort the tags alphabetically, case-insensitive.
* @param a {string} * @param {string} a The first tag to compare
* @param b {string} * @param {string} b The second tag to compare
* @returns {number} * @returns {number} The alphabetical order number
*/ */
sortTags(a, b) { sortTags(a, b) {
const aLowerCase = a.toLowerCase(); const aLowerCase = a.toLowerCase();