sortAscending.js 241 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.default = sortAscending;
  4. function sortAscending(list) {
  5. return list.sort(function (a, b) { return a - b; });
  6. }
  7. //# sourceMappingURL=sortAscending.js.map