Skip to content
On this page

Home > @taiyuuki/utils > is_blob

is_blob() function

该函数检查给定对象是否是 Blob 类的实例。

Signature:

typescript
declare function is_blob(blob: any): blob is Blob;
declare function is_blob(blob: any): blob is Blob;

Parameters

ParameterTypeDescription
blobany可以是任何数据类型。

Returns:

blob is Blob

函数 is_blob 返回一个布尔值,指示输入参数 blob 是否是 Blob 类的实例。

Released under the MIT License.