UNPKG
is-relative-url
Version:
latest (4.1.0)
4.1.0
4.0.0
3.0.0
2.0.0
1.0.0
0.1.1
0.1.0
Check if a URL is relative
github.com/sindresorhus/is-relative-url
sindresorhus/is-relative-url
is-relative-url
/
index.js
6 lines
(4 loc)
•
122 B
JavaScript
View Raw
1
2
3
4
5
6
import
isAbsoluteUrl
from
'is-absolute-url'
;
export
default
function
isRelativeUrl
(
url
) {
return
!
isAbsoluteUrl
(url); }