ix
Version:
The Interactive Extensions for JavaScript
26 lines (24 loc) • 893 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.elementAt = void 0;
/**
* Returns the element at a specified index in a sequence or undefined if the index is out of range.
*
* @template T The type of the elements in the source sequence.
* @param {Iterable<T>} source iterable sequence to return the element from.
* @param {number} index The zero-based index of the element to retrieve.
* @returns {(T | undefined)} An iterable sequence that produces the element at the specified
* position in the source sequence, or undefined if the index is outside the bounds of the source sequence.
*/
function elementAt(source, index) {
let i = index;
for (const item of source) {
if (i === 0) {
return item;
}
i--;
}
return undefined;
}
exports.elementAt = elementAt;
//# sourceMappingURL=elementat.js.map