mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import isAbsoluteUrl = require('is-absolute-url');
|
|
|
|
isAbsoluteUrl('http://sindresorhus.com/foo/bar');
|
|
// => true
|
|
|
|
isAbsoluteUrl('//sindresorhus.com');
|
|
// => false
|
|
|
|
isAbsoluteUrl('foo/bar');
|
|
// => false
|