JSPM

@webpro/is-subdir

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 18
  • Score
    100M100P100Q50756F
  • License MIT

Check if a directory is a subdirectory

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.

Alternatives