Package Exports
- path-equal
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (path-equal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
path-equal
Check if two paths are the same. It only check the paths, will not access file system.
import { pathEqual } from 'path-equal'
pathEqual('dir/sub-dir/file.txt', 'dir\\sub-dir\\file.txt') // trueContribute
# right after fork
npm install
# begin making changes
git checkout -b <branch>
npm run watch
# edit `webpack.config.dev.js` to exclude dependencies for the global build.
# after making change(s)
git commit -m "<commit message>"
git push
# create PRNpm Commands
There are a few useful commands you can use during development.
# Run tests (and lint) automatically whenever you save a file.
npm run watch
# Run tests with coverage stats (but won't fail you if coverage does not meet criteria)
npm run test
# Manually verify the project.
# This will be ran during 'npm preversion' so you normally don't need to run this yourself.
npm run verify
# Build the project.
# You normally don't need to do this.
npm run build
# Run tslint
# You normally don't need to do this as `npm run watch` and `npm version` will automatically run lint for you.
npm run lintGenerated by generator-unional@0.0.1