🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

is-relative-path

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-relative-path

Whether or not a given path is relative

2.0.0
latest
Source
npm
Version published
Weekly downloads
595K
-34.83%
Maintainers
1
Weekly downloads
 
Created

What is is-relative-path?

The is-relative-path npm package is a simple utility that helps determine if a given path is a relative path. This can be useful in various scenarios where path validation or manipulation is required.

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

Check if a path is relative

This feature allows you to check if a given path is relative. It returns true if the path is relative and false if it is absolute.

const isRelativePath = require('is-relative-path');

console.log(isRelativePath('./some/path')); // true
console.log(isRelativePath('/absolute/path')); // false

Other packages similar to is-relative-path

Keywords

relative

FAQs

Package last updated on 13 Aug 2017

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