File: index.d.ts

package info (click to toggle)
node-path-is-inside 1.0.2%2B~1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: javascript: 108; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
1
2
3
4
5
6
7
8
// 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;