mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 20:39:17 +08:00
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
|
|
import isUrl = require('is-url');
|
|
|
|
var isValid0: boolean = isUrl('https://github.com/segmentio/is-url');
|
|
var isValid1: boolean = isUrl('hogepiyo');
|
|
var isValid2: boolean = isUrl('');
|
|
var isValid3: boolean = isUrl(undefined);
|