blob: 17a2eb4e9fda1ca435ea22bba5050bc36c8e17b6 [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"];