mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:27:24 -04:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = sortAscending;
|
|
function sortAscending(list) {
|
|
return list.sort(function (a, b) {
|
|
return a - b;
|
|
});
|
|
};
|
|
module.exports = exports["default"]; |