mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-03 03:44:29 +08:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import urlRegex = require('url-regex');
|
|
|
|
urlRegex().test('https://github.com foo bar');
|
|
|
|
urlRegex().test('www.github.com foo bar');
|
|
|
|
urlRegex({exact: true}).test('https://github.com foo bar');
|
|
|
|
urlRegex({exact: true}).test('https://github.com');
|
|
|
|
'foo https://github.com bar //google.com'.match(urlRegex());
|