UNPKG

379 BTypeScriptView Raw
1// Type definitions for path-is-inside 1.0
2// Project: https://github.com/domenic/path-is-inside#readme
3// Definitions by: Alexander Marks <https://github.com/aomarks>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function pathIsInside(thePath: string,
7 potentialParent: string): boolean;
8export = pathIsInside;