astro-ghostcms/.pnpm-store/v3/files/cb/6592e8ef8693f3cb2af3974d64e...

13 lines
209 B
Plaintext

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