UNPKG

k6-html-reporter

Version:
16 lines 388 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.compareNameAscending = void 0; const compareNameAscending = (a, b) => { if (a.name < b.name) { return -1; } else if (a.name > b.name) { return 1; } else { return 0; } }; exports.compareNameAscending = compareNameAscending; //# sourceMappingURL=util.js.map