Sha256: 1c22f9ba2e3af251702503a6c162ffcc0a0f7d5656c359ccc142c5c880ef2ddc
Contents?: true
Size: 441 Bytes
Versions: 14
Compression:
Stored size: 441 Bytes
Contents
/** * Returns the element at a specified index in a sequence. * @example * var res = source.elementAt(5); * @param {Number} index The zero-based index of the element to retrieve. * @returns {Observable} An observable sequence that produces the element at the specified position in the source sequence. */ observableProto.elementAt = function (index) { return elementAtOrDefault(this, index, false); };
Version data entries
14 entries across 7 versions & 1 rubygems