UNPKG
create-director-app
Version:
alpha (0.0.0-alpha-20250617165343)
latest (0.1.0)
0.1.0
0.0.2
0.0.1
0.0.0-alpha-20250617165343
0.0.0-alpha-20250617163915
0.0.0-alpha-20250617161659
0.0.0-alpha-20250617035157
0.0.0-alpha-20250617032242
NPX package to clone director scripts from script generation service
create-director-app
/
dist
/
auth.js
13 lines
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Validates JWT token structure by checking it has 3 parts */
export
function
validateJWT
(
token
) {
try
{
const
parts = token.
split
(
"."
);
return
parts.
length
===
3
; }
catch
(error) {
return
false
; } }
//# sourceMappingURL=auth.js.map