You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

is-relative-url

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-relative-url

Check if a URL is relative

4.0.0
latest
Source
npmnpm
Version published
Weekly downloads
498K
-4.33%
Maintainers
1
Weekly downloads
 
Created

What is is-relative-url?

The is-relative-url npm package is a simple utility that checks if a given URL is a relative URL. It is useful for validating and processing URLs in web development.

What are is-relative-url's main functionalities?

Check if a URL is relative

This feature allows you to check if a given URL is relative. A relative URL does not include the domain name and is relative to the current page's URL.

const isRelativeUrl = require('is-relative-url');

console.log(isRelativeUrl('/path/to/resource')); // true
console.log(isRelativeUrl('http://example.com')); // false

Other packages similar to is-relative-url

Keywords

url

FAQs

Package last updated on 06 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts