Package Exports
- @webpro/is-subdir
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 (@webpro/is-subdir) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-subdir
Installation
npm install @webpro/is-subdir
Usage
const isSubDir = require('@webpro/is-subdir');
isSubDir(dir = '.', base = process.cwd()) => Boolean
Examples
isSubDir('..'); // false
isSubDir('.'); // false
isSubDir('foo'); // true
isSubDir('/foo/bar', '/foo'); // true
See the tests for more examples.