new buffer.Blob([sources[, options]])


创建一个新的 Blob 对象,包含给定来源的拼接内容。

【Creates a new Blob object containing a concatenation of the given sources.】

<ArrayBuffer><TypedArray><DataView><Buffer> 源已被复制到“Blob”中,因此在创建“Blob”之后可以安全地修改它们。

字符串源被编码为 UTF-8 字节序列并复制到 Blob 中。每个字符串部分中不匹配的代理对将被替换为 Unicode U+FFFD 替代字符。

【String sources are encoded as UTF-8 byte sequences and copied into the Blob. Unmatched surrogate pairs within each string part will be replaced by Unicode U+FFFD replacement characters.】