• M
    ArrayBuffer can now be consumed through `blob()`/`text()` · 9a703ba3
    Mislav Marohnić 提交于
    Before, when a Request or Response was initialized with an ArrayBuffer
    or TypedArray, that data was only accessible through `arrayBuffer()`
    method, and if it was initialized with DataView, it wasn't accessible at
    all.
    
    Now, regardless of the original type of body, the accessors `blob()`,
    `arrayBuffer()`, and `text()` always work.
    9a703ba3
fetch.js 12.2 KB