UNPKG

postcss-selector-parser

Version:

> Selector parser with built in methods for working with selector strings.

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