mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-26 14:15:57 +08:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import isRelativeUrl = require('is-relative-url');
|
|
|
|
isRelativeUrl('foo/bar');
|
|
// => true
|
|
|
|
isRelativeUrl('http://sindresorhus.com/foo/bar');
|
|
// => false
|
|
|
|
isRelativeUrl('//sindresorhus.com');
|
|
// => true
|