Home > @dinofe/xt-core > isBlobUrlLike

# isBlobUrlLike() function

校验字符串是否是 URL.createObjectURL (opens new window) 返回的链接

Signature:

export declare function isBlobUrlLike(url: string): boolean;

# Parameters

Parameter Type Description
url string 任意字符串

Returns:

boolean

是否是类似 blob 的链接

# Remarks

是否以 blob:// 开头

提示

该方法只是判断链接是否符合 blob 链接的特性,不保证 blob 链接一定可用

# Example

import { isBlobUrlLike } from '@dinofe/xt-core/common'
isBlobUrlLike('blob://6136234752134') // true