mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 00:31:53 +02:00
13 lines
No EOL
209 B
JavaScript
13 lines
No EOL
209 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; |