projecte_ionic/node_modules/postcss-selector-parser/dist/sortAscending.js
2022-02-09 18:30:03 +01:00

13 lines
209 B
JavaScript
Executable file

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