UNPKG

perfrunner-core

Version:

Automated UI performance test tool to measure performance changes for the web apps and sites

6 lines (5 loc) 241 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.orderByDescending = void 0; const orderByDescending = (list, by) => list.sort((a, b) => by(b) - by(a)); exports.orderByDescending = orderByDescending;