Files
aula-manager/chunk-BX7XdaCY.js
2026-07-05 17:54:50 +07:00

2 lines
1.1 KiB
JavaScript

const a=/^#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?$/,s=/^#[0-9a-fA-F]{4}([0-9a-fA-F]{4})?$/,r=/^#([0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/,e=/^rgb\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5])\)$/,d=/^rgba\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/,o={date:t=>/^-?[\d]+\/[0-1]\d\/[0-3]\d$/.test(t),time:t=>/^([0-1]?\d|2[0-3]):[0-5]\d$/.test(t),fulltime:t=>/^([0-1]?\d|2[0-3]):[0-5]\d:[0-5]\d$/.test(t),timeOrFulltime:t=>/^([0-1]?\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/.test(t),email:t=>/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(t),hexColor:t=>a.test(t),hexaColor:t=>s.test(t),hexOrHexaColor:t=>r.test(t),rgbColor:t=>e.test(t),rgbaColor:t=>d.test(t),rgbOrRgbaColor:t=>e.test(t)||d.test(t),hexOrRgbColor:t=>a.test(t)||e.test(t),hexaOrRgbaColor:t=>s.test(t)||d.test(t),anyColor:t=>r.test(t)||e.test(t)||d.test(t)};export{o as t};