Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
var
/
www
/
html
/
tpid-karpenter
/
web
/
node_modules
/
is-path-inside
/
Or
Select Your none :
Upload File :
New :
File
Dir
/var/www/html/tpid-karpenter/web/node_modules/is-path-inside/index.js
'use strict'; const path = require('path'); const pathIsInside = require('path-is-inside'); module.exports = (childPath, parentPath) => { childPath = path.resolve(childPath); parentPath = path.resolve(parentPath); if (childPath === parentPath) { return false; } return pathIsInside(childPath, parentPath); };