D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
components
/
IntervalInput
/
Filename :
validation.ts
back
Copy
export const validateIntervalRegex = /^(-?\d+(?:\.\d+)?)(ms|[Mwdhmsy])$/; export const validateInterval = (val: string, regex: RegExp) => { const matches = val.match(regex); return matches || !val ? false : true; };