9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
/**
|
|
* Only alphanumerical characters
|
|
*/
|
|
export const alphanumeric = /^[a-zA-Z0-9]+$/;
|
|
|
|
/**
|
|
* Only lowercase letters
|
|
*/
|
|
export const lowercase = /^[a-z]+$/;
|