Files
w4rpservices/node_modules/postcss-selector-parser/dist/sortAscending.js
2018-10-27 03:51:47 -05:00

10 lines
214 B
JavaScript
Vendored

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