.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / postcss-selector-parser / dist / sortAscending.js
1 "use strict";
2
3 exports.__esModule = true;
4 exports.default = sortAscending;
5 function sortAscending(list) {
6     return list.sort(function (a, b) {
7         return a - b;
8     });
9 };
10 module.exports = exports["default"];