@types/path-is-inside
Version:
TypeScript definitions for path-is-inside
9 lines (7 loc) • 379 B
TypeScript
// Type definitions for path-is-inside 1.0
// Project: https://github.com/domenic/path-is-inside#readme
// Definitions by: Alexander Marks <https://github.com/aomarks>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function pathIsInside(thePath: string,
potentialParent: string): boolean;
export = pathIsInside;