UNPKG

viplayer

Version:

A video playback component adapted to Vue3

6 lines 144 B
/** * 判断是否为外部资源 */ export function isExternal(path: string): boolean { return /^(https?:|mailto:|tel:)/.test(path); }