UNPKG
@edflex-tech/keycloakify
Version:
latest (5.9.1-rc.4)
5.9.1-rc.4
5.9.1-rc.3
Keycloak theme generator for Reacts app
github.com/garronej/keycloakify
edflex-tech/keycloakify
@edflex-tech/keycloakify
/
src
/
bin
/
tools
/
isInside.ts
8 lines
(5 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ relative
as
pathRelative }
from
"path"
;
export
function
isInside
(
params
: { dirPath:
string
; filePath:
string
}
) {
const
{ dirPath, filePath } = params;
return
!
pathRelative
(dirPath, filePath).
startsWith
(
".."
); }