forked from extern/bruno
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
const Yup = require('yup');
|
|
|
|
const uidSchema = Yup.string()
|
|
.length(21, 'uid must be 21 characters in length')
|
|
.matches(/^[a-zA-Z0-9]*$/, 'uid must be alphanumeric')
|
|
.strict();
|
|
|
|
module.exports = {
|
|
uidSchema
|
|
}; |