How to use is-negated-glob - 2 common examples

To help you get started, we’ve selected a few is-negated-glob examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github dsherret / ts-morph / src / utils / FileUtils.ts View on Github external
static isNegatedGlob(glob: string) {
        return isNegatedGlob(glob).negated;
    }
github dsherret / ts-morph / packages / common / src / fileSystem / FileUtils.ts View on Github external
static isNegatedGlob(glob: string) {
        return isNegatedGlob(glob).negated;
    }

is-negated-glob

Returns an object with a `negated` boolean and the `!` stripped from negation patterns. Also respects extglobs.

MIT
Latest version published 8 years ago

Package Health Score

67 / 100
Full package analysis

Popular is-negated-glob functions