Files
pig-farm-controller-fe/node_modules/postcss-selector-parser/dist/sortAscending.js

11 lines
207 B
JavaScript
Raw Normal View History

2025-09-19 14:25:20 +08:00
"use strict";
exports.__esModule = true;
exports["default"] = sortAscending;
function sortAscending(list) {
return list.sort(function (a, b) {
return a - b;
});
}
;
module.exports = exports.default;