/**
 * 通用正则列表
 * urlPattern: url链接判断正则
 */
export const REGEX = {
  urlPattern: /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$/i
}
