UNPKG

lerna

Version:

Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository

8 lines (7 loc) 265 B
/** * Determine whether a string contains an extglob pattern. * Extglob patterns use one of: @(...) ?(...) !(...) +(...) *(...) * * Modernized TypeScript replacement for the `is-extglob` npm package. */ export declare function isExtglob(str: string): boolean;