UNPKG
@istvan.xyz/phc-format
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
An implementation of the PHC format.
github.com/istvan-xyz/phc-format
istvan-xyz/phc-format
@istvan.xyz/phc-format
/
patterns.js
7 lines
(6 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
valueRegex
=
exports
.
nameRegex
=
exports
.
idRegex
=
void
0
;
exports
.
idRegex
=
/^[a-z0-9-]{1,32}$/
;
exports
.
nameRegex
=
/^[a-z0-9-]{1,32}$/
;
exports
.
valueRegex
=
/^[a-zA-Z0-9/+.-]+$/
;