forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/postcss-selector-parser/dist/sortAscending.js

13 lines
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;