Update .bashrc
[dotfiles/.git] / dist / sortAscending.js
1 "use strict";
2
3 exports.__esModule = true;
4 exports.default = sortAscending;
5 function sortAscending(list) {
6     return list.sort(function (a, b) {
7         return a - b;
8     });
9 };
10 module.exports = exports["default"];