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.
* @param a {string}
* @param b {string}
* @returns {number}
* @param {string} a The first tag to compare
* @param {string} b The second tag to compare
* @returns {number} The alphabetical order number
*/
sortTags(a, b) {
const aLowerCase = a.toLowerCase();