1.0.1 • Published 4 years ago

@moraj/path-equal v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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