/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
packages/url/src/index.ts
28 строк
1 KB
Eshaan Dabasiya
Migrate `@packages/url` package to TypeScript (#70496)
18 июл 2025, 13:25
Не верифицирован
18 июл 2025, 13:25
443d8fa
Код
Авторство
О чём код?
export { isURL } from './is-url'; export { isEmail } from './is-email'; export { isPhoneNumber } from './is-phone-number'; export { getProtocol } from './get-protocol'; export { isValidProtocol } from './is-valid-protocol'; export { getAuthority } from './get-authority'; export { isValidAuthority } from './is-valid-authority'; export { getPath } from './get-path'; export { isValidPath } from './is-valid-path'; export { getQueryString } from './get-query-string'; export { buildQueryString } from './build-query-string'; export { isValidQueryString } from './is-valid-query-string'; export { getPathAndQueryString } from './get-path-and-query-string'; export { getFragment } from './get-fragment'; export { isValidFragment } from './is-valid-fragment'; export { addQueryArgs } from './add-query-args'; export { getQueryArg } from './get-query-arg'; export { getQueryArgs } from './get-query-args'; export { hasQueryArg } from './has-query-arg'; export { removeQueryArgs } from './remove-query-args'; export { prependHTTP } from './prepend-http'; export { safeDecodeURI } from './safe-decode-uri'; export { safeDecodeURIComponent } from './safe-decode-uri-component'; export { filterURLForDisplay } from './filter-url-for-display'; export { cleanForSlug } from './clean-for-slug'; export { getFilename } from './get-filename'; export { normalizePath } from './normalize-path'; export { prependHTTPS } from './prepend-https';