Socket
Socket
Sign inDemoInstall

is-path-cwd

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-path-cwd

Check if a path is CWD


Version published
Weekly downloads
12M
decreased by-2.44%
Maintainers
1
Install size
2.05 kB
Created
Weekly downloads
 

Package description

What is is-path-cwd?

The `is-path-cwd` npm package is a simple utility that allows you to check if a given path is the current working directory (CWD). This can be particularly useful in applications where the working directory's state or location is relevant to the application's behavior or output. For example, it can be used to prevent certain operations from being performed in the CWD or to validate paths in CLI tools.

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

Check if a path is the current working directory

This feature allows you to check if a specific path is the current working directory. The function returns `true` if the given path is the CWD, and `false` otherwise. This can be useful for ensuring that certain operations are not performed in the CWD or for validating paths in applications.

const isPathCwd = require('is-path-cwd');

console.log(isPathCwd('.')); // true if the current directory is the CWD
console.log(isPathCwd('/some/other/path')); // false

Other packages similar to is-path-cwd

Readme

Source

is-path-cwd Build Status

Check if a path is CWD

Install

$ npm install --save is-path-cwd

Usage

var isPathCwd = require('is-path-cwd');

isPathCwd(process.cwd());
//=> true

isPathCwd('unicorn');
//=> false

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 14 Aug 2014

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc