mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
11 lines
207 B
JavaScript
11 lines
207 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; |