1.0.0 • Published 5 years ago

@webpro/is-subdir v1.0.0

Weekly downloads
359
License
MIT
Repository
github
Last release
5 years ago

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