UNPKG
@corrbo/react-native-dev-console
Version:
latest (1.0.9)
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Developer menu
github.com/alzhab/react-native-dev-console
@corrbo/react-native-dev-console
/
node_modules
/
react-native-network-logger
/
src
/
utils
/
extractHost.ts
8 lines
(5 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
const
extractHost
= (
url
:
string
) => {
const
host = url.
split
(
'//'
)[
1
]?.
split
(
':'
)[
0
]?.
split
(
'/'
)[
0
] ||
undefined
;
return
host; };
export
default
extractHost;