pages/node_modules/postcss-selector-parser/dist/sortAscending.js
git_repo_user 0a38b60f32 first commit
2025-08-29 21:42:23 +00:00

11 lines
No EOL
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;