A collection of Untile utilities to build web
applications based on typescript.
This function checks if the string path is an external url.
isExternalUrl(url: string): boolean
import { isExternalUrl } from '@untile/react-core/utils/is-external-url';
isExternalUrl('http://foo.bar'); // true
isExternalUrl('/foo/bar'); // false