mirror of
https://github.com/FranP-code/shortly.git
synced 2025-10-13 00:43:28 +00:00
6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
import { isUrlRegex } from '../utils/constants'
|
|
|
|
export default function (url: string) {
|
|
return !!isUrlRegex.test(url)
|
|
}
|