Opal-Estate-Pro/node_modules/postcss-selector-parser/dist/sortAscending.js

10 lines
214 B
JavaScript
Raw Normal View History

2019-09-13 04:44:33 +02: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"];