is-path-cwd

  • Version 3.0.0
  • Published
  • 3.16 kB
  • No dependencies
  • MIT license

Install

npm i is-path-cwd
yarn add is-path-cwd
pnpm add is-path-cwd

Overview

Check if a path is the current working directory

Index

Functions

Functions

function isPathCwd

isPathCwd: (path: string) => boolean;
  • Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory).

    Example 1

    import isPathCwd from 'is-path-cwd';
    isPathCwd(process.cwd());
    //=> true
    isPathCwd('unicorn');
    //=> false

Package Files (1)

Dependencies (0)

No dependencies.

Dev Dependencies (3)

Peer Dependencies (0)

No peer dependencies.

Badge

To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/is-path-cwd.

  • Markdown
    [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/is-path-cwd)
  • HTML
    <a href="https://www.jsdocs.io/package/is-path-cwd"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>