blob: 17a2eb4e9fda1ca435ea22bba5050bc36c8e17b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
"use strict";
exports.__esModule = true;
exports.default = sortAscending;
function sortAscending(list) {
return list.sort(function (a, b) {
return a - b;
});
};
module.exports = exports["default"];
|