Files
dns-server/node_modules/postcss-selector-parser/dist/sortAscending.js
T
Alex Yang f627244b8f 更新
2026-03-30 01:04:46 +08: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;