@moraj/path-equal
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

path-equal

stability version semantic-release

Core functionality forked from unional/path-equal

File paths in Unix and Windows are different. During test, sometimes we want to compare if the file paths are the same.

Doing this comparison can get unwieldy. But not doing it would means the project can only be develop in specific platform.

This library provides this comparison to check if the two paths are the same, regardless of the running platform.

Install

npm install --save @moraj/path-equal

Usage

import pathEqual from '@moraj/path-equal'

pathEqual('dir/sub-dir/file.txt', 'dir\\sub-dir\\file.txt') // true

This library will not access the file system, so comparing absolute path with relative path will fail.

Contribute

# after fork and clone
npm install

# begin making changes
git checkout -b <branch>
npm run watch

# after making change(s)
git commit -m "<commit message>"
git push

# create PR

Package Sidebar

Install

npm i @moraj/path-equal

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

10.4 kB

Total Files

12

Last publish

Collaborators

  • morteza-jamali