UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

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