hugoWebsite/node_modules/postcss-selector-parser/dist/sortAscending.js
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉
2022-10-28 17:20:35 -05:00

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