Socket
Socket
Sign inDemoInstall

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


Version published
Weekly downloads
646K
increased by3.36%
Maintainers
1
Weekly downloads
 
Created

Package description

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

Readme

Source

is-relative-path npm npm

Sometimes I just want to scream

npm install is-relative-path

Usage

var isRelative = require('is-relative-path');

isRelative('../'); // true
isRelative('/'); // false

Keywords

FAQs

Package last updated on 09 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc