pragmatic-fp-ts
Version:
Opinionated functional programming library with easy use in mind
14 lines (13 loc) • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.reverse = void 0;
const main_1 = require("./main");
function reverse(coll) {
const theColl = (0, main_1.getValueOr)([], coll);
const reverted = new Array(theColl.length);
for (let i = 0, j = theColl.length - 1; j >= 0; ++i, --j) {
reverted[j] = theColl[i];
}
return typeof theColl === "string" ? reverted.join("") : reverted;
}
exports.reverse = reverse;