ohctechv3/.svn/pristine/1b/1b9c82f234f81800bf2276db9574fea0bfce661b.svn-base
2024-10-28 15:03:36 +05:30

11 lines
207 B
Plaintext

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