one
Version:
One is a new React Framework that makes Vite serve both native and web.
16 lines (15 loc) • 445 B
JavaScript
function hasUrlProtocolPrefix(href) {
return /^[\w\d_+.-]+:\/\//.test(href);
}
function isWellKnownUri(href) {
return /^(https?|mailto|tel|sms|geo|maps|market|itmss?|itms-apps|content|file):/.test(href);
}
function shouldLinkExternally(href) {
return !/^[./]/.test(href) && (hasUrlProtocolPrefix(href) || isWellKnownUri(href));
}
export {
hasUrlProtocolPrefix,
isWellKnownUri,
shouldLinkExternally
};
//# sourceMappingURL=url.js.map