printer-notifications/node_modules/postcss-selector-parser/dist/sortAscending.js
2023-11-13 16:10:04 -05:00

11 lines
207 B
JavaScript

"use strict";
exports.__esModule = true;
exports["default"] = sortAscending;
function sortAscending(list) {
return list.sort(function (a, b) {
return a - b;
});
}
;
module.exports = exports.default;