Search the reference...
/
BuildDocsReferenceGuidesBlogDiscord/Globals/Blob/streamMstreammethod
Blob.streamstream(): ReadableStreamUint8ArrayArrayBufferLike>>;MDN Referencestream(): ReadableStreamUint8ArrayArrayBuffer>>;Returns a readable stream of the blob's contentsReferenced typesclass ReadableStreamR = any>This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object.MDN Referencereadonly locked: booleanMDN Reference[Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIteratorR>;cancel(reason?: any): Promisevoid>;MDN ReferencegetReader(options: { mode: 'byob' }): ReadableStreamBYOBReader;MDN ReferencegetReader(): ReadableStreamDefaultReaderR>;getReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReaderR>;pipeThroughT>(transform: ReadableWritablePairT, R>,options?: StreamPipeOptions): ReadableStreamT>;MDN ReferencepipeTo(destination: WritableStreamR>,options?: StreamPipeOptions): Promisevoid>;MDN Referencetee(): [ReadableStreamR>, ReadableStreamR>];MDN Referencevalues(options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIteratorR>;class Uint8ArrayTArrayBuffer extends ArrayBufferLike = ArrayBufferLike>A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised.readonly [Symbol.toStringTag]: 'Uint8Array'readonly buffer: TArrayBufferThe ArrayBuffer instance referenced by the array.readonly byteLength: numberThe length in bytes of the array.readonly byteOffset: numberThe offset in bytes of the array.readonly BYTES_PER_ELEMENT: numberThe size in bytes of each element in the array.readonly length: numberThe length of the array.[Symbol.iterator](): ArrayIteratornumber>;at(index: number): undefined | number;Returns the item located at the specified index.@param indexThe zero-based index of the desired code unit. A negative index will count back from the last item.copyWithin(target: number,start: number,end?: number): this;Returns the this object after copying a section of the array identified by start and end to the same array starting at position target@param targetIf target is negative, it is treated as length+target where length is the length of the array.@param startIf start is negative, it is treated as length+start. If end is negative, it is treated as length+end.@param endIf not specified, length of the this object is used as its default value.entries(): ArrayIterator[number, number]>;Returns an array of key, value pairs for every entry in the arrayevery(predicate: (value: number, index: number, array: this) => unknown,thisArg?: any): boolean;Determines whether all the members of an array satisfy the specified test.@param predicateA function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.@param thisArgAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.fill(value: number,start?: number,end?: number): this;Changes all array elements from start to end index to a static value and returns the modified array@param valuevalue to fill array section with@param startindex to start filling the array at. If start is negative, it is treated as length+start where length is the length of the array.@param endindex to stop filling the array at. If end is negative, it is treated as length+end.filter(predicate: (value: number, index: number, array: this) => any,thisArg?: any): Uint8ArrayArrayBuffer>;Returns the elements of an array that meet the condition specified in a callback function.@param predicateA function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.@param thisArgAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.find(predicate: (value: number, index: number, obj: this) => boolean,thisArg?: any): undefined | number;Returns the value of the first element in the array where predicate is true, and undefined otherwise.@param predicatefind calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.@param thisArgIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.findIndex(predicate: (value: number, index: number, obj: this) => boolean,thisArg?: any): number;Returns the index of the first element in the array where predicate is true, and -1 otherwise.@param predicatefind calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.@param thisArgIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.findLastS extends number>(predicate: (value: number, index: number, array: this) => value is S,thisArg?: any): undefined | S;Returns the value of the last element in the array where predicate is true, and undefined otherwise.@param predicatefindLast calls predicate once for each element of the array, in descending order, until it finds one where predicate returns true. If such an element is found, findLast immediately returns that element value. Otherwise, findLast returns undefined.@param thisArgIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.findLast(predicate: (value: number, index: number, array: this) => unknown,thisArg?: any): undefined | number;findLastIndex(predicate: (value: number, index: number, array: this) => unknown,thisArg?: any): number;Returns the index of the last element in the array where predicate is true, and -1 otherwise.@param predicatefindLastIndex calls predicate once for each element of the array, in descending order, until it finds one where predicate returns true. If such an element is found, findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.@param thisArgIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.forEach(callbackfn: (value: number, index: number, array: this) => void,thisArg?: any): void;Performs the specified action for each element in an array.@param callbackfnA function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.@param thisArgAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.includes(searchElement: number,fromIndex?: number): boolean;Determines whether an array includes a certain element, returning true or false as appropriate.@param searchElementThe element to search for.@param fromIndexThe position in this array at which to begin searching for searchElement.indexOf(searchElement: number,fromIndex?: number): number;Returns the index of the first occurrence of a value in an array.@param searchElementThe value to locate in the array.@param fromIndexThe array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.join(separator?: string): string;Adds all the elements of an array separated by the specified separator string.@param separatorA string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.keys(): ArrayIteratornumber>;Returns an list of keys in the arraylastIndexOf(searchElement: number,fromIndex?: number): number;Returns the index of the last occurrence of a value in an array.@param searchElementThe value to locate in the array.@param fromIndexThe array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.map(callbackfn: (value: number, index: number, array: this) => number,thisArg?: any): Uint8ArrayArrayBuffer>;Calls a defined callback function on each element of an array, and returns an array that contains the results.@param callbackfnA function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.@param thisArgAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.@param callbackfnA function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number,initialValue: number): number;reduceU>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U,initialValue: U): U;Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.@param callbackfnA function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.@param initialValueIf initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number): number;Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.@param callbackfnA function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: this) => number,initialValue: number): number;reduceRightU>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: this) => U,initialValue: U): U;Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.@param callbackfnA function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.@param initialValueIf initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.reverse(): this;Reverses the elements in an Array.set(array: ArrayLikenumber>,offset?: number): void;Sets a value or an array of values.@param arrayA typed or untyped array of values to set.@param offsetThe index in the current array at which the values are to be written.setFromBase64(base64: string,offset?: number): { read: number; written: number };Set the contents of the Uint8Array from a base64 encoded string@param base64The base64 encoded string to decode into the array@param offsetOptional starting index to begin setting the decoded bytes (default: 0)setFromHex(hex: string): { read: number; written: number };Set the contents of the Uint8Array from a hex encoded string@param hexThe hex encoded string to decode into the array. The string must have an even number of characters, be valid hexadecimal characters and contain no whitespace.slice(start?: number,end?: number): Uint8ArrayArrayBuffer>;Returns a section of an array.@param startThe beginning of the specified portion of the array.@param endThe end of the specified portion of the array. This is exclusive of the element at the index 'end'.some(predicate: (value: number, index: number, array: this) => unknown,thisArg?: any): boolean;Determines whether the specified callback function returns true for any element of an array.@param predicateA function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.@param thisArgAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.sort(compareFn?: (a: number, b: number) => number): this;Sorts an array.@param compareFnFunction used to determine the order of the elements. It is expected to return a negative value if first argument is less than second argument, zero if they're equal and a positive value otherwise. If omitted, the elements are sorted in ascending order.[11,2,22,1].sort((a, b) => a - b) subarray(begin?: number,end?: number): Uint8ArrayTArrayBuffer>;Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.@param beginThe index of the beginning of the array.@param endThe index of the end of the array.toBase64(options?: { alphabet: 'base64' | 'base64url'; omitPadding: boolean }): string;Convert the Uint8Array to a base64 encoded string@returnsThe base64 encoded string representation of the Uint8ArraytoHex(): string;Convert the Uint8Array to a hex encoded string@returnsThe hex encoded string representation of the Uint8ArraytoLocaleString(): string;Converts a number to a string by using the current locale.toLocaleString(locales: string | string[],options?: NumberFormatOptions): string;toReversed(): Uint8ArrayArrayBuffer>;Copies the array and returns the copy with the elements in reverse order.toSorted(compareFn?: (a: number, b: number) => number): Uint8ArrayArrayBuffer>;Copies and sorts the array.@param compareFnFunction used to determine the order of the elements. It is expected to return a negative value if the first argument is less than the second argument, zero if they're equal, and a positive value otherwise. If omitted, the elements are sorted in ascending order.const myNums = Uint8Array.from([11, 2, 22, 1]); myNums.toSorted((a, b) => a - b) // Uint8Array(4) [1, 2, 11, 22] toString(): string;Returns a string representation of an array.valueOf(): this;Returns the primitive value of the specified object.values(): ArrayIteratornumber>;Returns an list of values in the arraywith(index: number,value: number): Uint8ArrayArrayBuffer>;Copies the array and inserts the given number at the provided index.@param indexThe index of the value to overwrite. If the index is negative, then it replaces from the end of the array.@param valueThe value to insert into the copied array.@returnsA copy of the original array with the inserted value.class ArrayBufferRepresents a raw buffer of binary data, which is used to store data for the different typed arrays. ArrayBuffers cannot be read from or written to directly, but can be passed to a typed array or DataView Object to interpret the raw buffer as needed.readonly [Symbol.toStringTag]: stringreadonly byteLength: numberRead-only. The length of the ArrayBuffer (in bytes).resize(newByteLength?: number): void;Resizes the ArrayBuffer to the specified size (in bytes).MDNresize(byteLength: number): ArrayBuffer;Resize an ArrayBuffer in-place.slice(begin: number,end?: number): ArrayBuffer;Returns a section of an ArrayBuffer.transfer(newByteLength?: number): ArrayBuffer;Creates a new ArrayBuffer with the same byte content as this buffer, then detaches this buffer.MDNtransferToFixedLength(newByteLength?: number): ArrayBuffer;Creates a new non-resizable ArrayBuffer with the same byte content as this buffer, then detaches this buffer.MDNResources
ReferenceDocsGuidesDiscordMerch StoreGitHubBlogToolkit
RuntimePackage managerTest runnerBundlerPackage runnerProject
Bun 1.0Bun 1.1Bun 1.2Bun 1.3RoadmapContributingLicenseBaked with ❤️ in San FranciscoWe're hiring →智能索引记录
-
2026-02-27 18:16:07
金融理财
成功
标题:理财规划师三级报名网址(理财规划师三级考试科目)_火必 Huobi交易所
简介:本篇文章给大家谈谈理财规划师三级报名网址,以及理财规划师三级考试科目对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔
-
2026-02-27 17:00:35
综合导航
成功
标题:多少成功,毁于事先告诉别人-励志一生
简介:文/晚情 一大早起来,就看见凌晨半夜里,一位翡翠同行发给我的大段大段的语音。 前几天,一位客人在她那里结缘了一个挂件,收
-
2026-02-27 21:15:54
综合导航
成功
标题:Chaque jour, je prie – Excelsis
简介:Recueil de prières pour enfants pour la journée.
-
2026-02-27 14:08:14
综合导航
成功
标题:Depo Stok Takip - Sayfa 9 / 10 - Nar10 Bilişim Barkod Sistemi- Depo ve Stok Takibi
简介:Online Stok Takip, Barkodlu Satış, Depo Şube Mağaza Entegras
-
2026-02-27 12:50:46
综合导航
成功
标题:纸背的拼音_纸背的意思_纸背的繁体_词组网
简介:词组网纸背频道,介绍纸背,纸背的拼音,纸背是什么意思,纸背的意思,纸背的繁体,纸背怎么读,纸背的近义词,纸背的反义词。
-
2026-02-27 13:58:39
综合导航
成功
标题:大战国,大战国网页游戏,大战国福利,大战国公益服,大战国官网 - 2wi游戏
简介:大战国官网为您提供大战国网页游戏,并提供大战国辅助工具,大战国攻略,大战国新服,大战国开服表,大战国鬼服村服公益服等相关
-
2026-02-27 22:46:18
综合导航
成功
标题:Saber Interactive Indicates It’s Been Sold As References To Embracer Group Are Removed From Its Website - PlayStation Universe
简介:Saber Interactive has removed references to Embracer Group f
-
2026-02-27 16:41:10
综合导航
成功
标题:Office Locations in Italy Morgan Stanley
简介:Learn more about the services that Morgan Stanley can provid
-
2026-02-27 14:10:22
综合导航
成功
标题:HearthMasters Inc. Contact Information - PR.com
简介:View HearthMasters Inc.'s contact information in their
-
2026-02-27 16:46:50
综合导航
成功
标题:胰腺癌一般形成要几年 - 云大夫
简介:胰腺癌的形成需要多长时间,影响因素非常多,只能说因人而异。关于胰腺癌的发生机制,目前认为吸烟是导致胰腺癌的主要因素之一。
-
2026-02-27 14:29:10
综合导航
成功
标题:Cinema Pro(Cinematography Pro)を利用する Xperia 5 II SOG02 オンラインマニュアル(取扱説明書) au
简介:auのスマートフォン「Xperia 5 II(エクスペリア ファイブ マークツー)SOG02」Android12版のオン
-
2026-02-27 20:45:14
职场办公
成功
标题:2019年新疆兵团中级安全工程师报名通知(9月23日起)-中级注册安全工程师-233网校
简介:关于做好兵团2019年度中级注册安全工程师职业资格考试考务工作的通知各师(市)人事考试管理机构、兵直有关单位:根据人力资
-
2026-02-27 12:56:59
综合导航
成功
标题:2020山东中级注册安全工程师报名入口8.25-9.1开通-中级注册安全工程师-233网校
简介:2020年山东中级注册安全工程师报名入口开通时间为8月25日-9月1日,报考人员可登录中国人事考试网(link.233.
-
2026-02-27 15:09:35
综合导航
成功
标题:Goals-Based Planning: Stay on Track Morgan Stanley
简介:Learn what to do if you are off track on your financial goal
-
2026-02-27 16:58:10
综合导航
成功
标题:
简介:
-
2026-02-27 21:15:51
综合导航
成功
标题:car wont run, not getting gas [Archive] - Toyota MR2 Message Board
简介:i have an 86 mr2 that wont run, i put a new fuel pump and fp
-
2026-02-27 22:48:24
综合导航
成功
标题:Asset Management & GIS: Enhancing Fiber Buildouts (Part 2)
简介:Explore second part of this blog to know how enriched data a
-
2026-02-27 21:36:15
教育培训
成功
标题:高一数学A4秋季补习补课辅导班-上海新王牌培优
简介:新王牌培优是上海好的初高中辅导培训机构,创立于2005年,采用分层授课,小班化教学的辅导补课方式 ,是一家致力于初高中辅
-
2026-02-27 15:08:55
综合导航
成功
标题:AI智能索引
简介:Wir möchten, dass Sie sich bei uns vom ersten Moment an wohl
-
2026-02-27 21:44:17
综合导航
成功
标题:3m Pre-Terminated 6 Plug to 6 Plug Cat6a S/FTP Trunk Cables - FS.com
简介:Buy 3m (10ft) Shielded (S/FTP) Cat6a Pre-Terminated Copper T
-
2026-02-27 22:47:10
金融理财
成功
标题:爸爸节理财节(父亲节理财沙龙文案)_火必 Huobi交易所
简介:本篇文章给大家谈谈爸爸节理财节,以及父亲节理财沙龙文案对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。 本文目录一
-
2026-02-27 22:45:35
综合导航
成功
标题:失伍的拼音_失伍的意思_失伍的繁体_词组网
简介:词组网失伍频道,介绍失伍,失伍的拼音,失伍是什么意思,失伍的意思,失伍的繁体,失伍怎么读,失伍的近义词,失伍的反义词。
-
2026-02-27 18:51:20
综合导航
成功
标题:Smarter Living T3
简介:The latest gadget and technology news, reviews, buyer
-
2026-02-27 19:05:53
综合导航
成功
标题:京东(JD.COM)-正品低价、品质保障、配送及时、轻松购物!
简介:京东JD.COM-专业的综合网上购物商城,为您提供正品低价的购物选择、优质便捷的服务体验。商品来自全球数十万品牌商家,囊
-
2026-02-27 20:27:11
视频影音
成功
标题:高冷学长认栽了第59集红豆剧场_在线播放[高清流畅]_爽文短剧
简介:爽文短剧_高冷学长认栽了剧情介绍:高冷学长认栽了是由内详执导,内详等人主演的,于2025年上映,该剧情讲述的是暂无简介@
-
2026-02-27 20:39:35
综合导航
成功
标题:便³°çæ¼é³_便³°çææ_便³°çç¹ä½_è¯ç»ç½
简介:è¯ç»ç½ä¾æ³°é¢é,ä»ç»ä¾æ³°,便³°çæ¼é³,便³°æ¯
-
2026-02-27 12:50:25
综合导航
成功
标题:事字的意思_事字的解释、组词、拼音、组词、笔顺、部首-雄安文学网
简介:雄安文学网为您提供【事】字的详细解释,包括【事】组词、拼音、组词、笔顺、部首和笔画,帮助您全面理解和掌握【事】的含义和用
-
2026-02-27 15:49:07
综合导航
成功
标题:KELL-STROM Calibration Services Tektronix
简介:Tektronix can manage 100% of your calibration needs.Tektroni
-
2026-02-27 18:20:08
综合导航
成功
标题:WTB: struts [Archive] - Toyota MR2 Message Board
简介:Im looking for all 4 struts or strut housings. Good or bad c
-
2026-02-27 21:15:45
综合导航
成功
标题:Mountain Drive Photo Shoot 07.02.06 [Archive] - Toyota MR2 Message Board
简介:http://myspace-944.vo.llnwd.net/00893/44/99/893939944_l.jpg