DefinitelyTyped/types/path-is-inside/index.d.ts
2018-03-29 00:24:50 -07:00

9 lines
371 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;