UNPKG

one

Version:

One is a new React Framework that makes Vite serve both native and web.

12 lines (11 loc) 446 B
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.native.js.map