blob: 7af2fec8f4a4ab8616059590029d3acfa048b8cf [file] [log] [blame]
"use strict";
exports.__esModule = true;
exports.default = sortAscending;
function sortAscending(list) {
return list.sort(function (a, b) {
return a - b;
});
}
;
module.exports = exports.default;