UNPKG

react-native-network-logger

Version:

An HTTP traffic monitor for React Native with zero dependencies

8 lines (5 loc) 165 B
const extractHost = (url: string) => { const host = url.split('//')[1]?.split(':')[0]?.split('/')[0] || undefined; return host; }; export default extractHost;