mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
5 lines
205 B
TypeScript
5 lines
205 B
TypeScript
export const isOnlyNumbers = /^\d+$/;
|
|
export const isIPAddress = /^((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)\.?\b){4}$/;
|
|
export const startsWithHttp = /^http:\/\//;
|
|
export const startsWithHttpOrS = /^https?:\/\//;
|