| 
					
				 | 
			
			
				@@ -3,3 +3,457 @@ export const getOperationalPrecision = (num1, num2) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   const val = ((num1 * 10000) * (num2 * 10000) / 100000000).toFixed(2) || 0 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   return val != 0 ? val : 0 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const forEach = (arr, fn) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!arr.length || !fn) return 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let i = -1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const len = arr.length 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  while (++i < len) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const item = arr[i] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    fn(item, i, arr) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} arr1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} arr2 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 得到两个数组的交集, 两个数组的元素为数值或字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const getIntersection = (arr1, arr2) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const len = Math.min(arr1.length, arr2.length) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let i = -1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const res = [] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  while (++i < len) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const item = arr2[i] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (arr1.indexOf(item) > -1) res.push(item) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return res 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} arr1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} arr2 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 得到两个数组的并集, 两个数组的元素为数值或字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const getUnion = (arr1, arr2) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return Array.from(new Set([...arr1, ...arr2])) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} target 目标数组 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Array} arr 需要查询的数组 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 判断要查询的数组是否至少有一个元素包含在目标数组中 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const hasOneOf = (targetarr, arr) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!targetarr) return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!arr) return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return targetarr.some(_ => arr.indexOf(_) > -1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {String|Number} value 要验证的字符串或数值 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} validList 用来验证的列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export function oneOf (value, validList) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  for (let i = 0; i < validList.length; i++) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (value === validList[i]) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} timeStamp 判断时间戳格式是否是毫秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @returns {Boolean} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+const isMillisecond = timeStamp => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const timeStr = String(timeStamp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return timeStr.length > 10 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} timeStamp 传入的时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} currentTime 当前时间时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @returns {Boolean} 传入的时间戳是否早于当前时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+const isEarly = (timeStamp, currentTime) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return timeStamp < currentTime 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} num 数值 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @returns {String} 处理后的字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 如果传入的数值小于10,即位数只有1位,则在前面补充0 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+const getHandledValue = num => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return num < 10 ? '0' + num : num 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} timeStamp 传入的时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} startType 要返回的时间字符串的格式类型,传入'year'则返回年开头的完整时间 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+const getDate = (timeStamp, startType) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const d = new Date(timeStamp * 1000) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const year = d.getFullYear() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const month = getHandledValue(d.getMonth() + 1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const date = getHandledValue(d.getDate()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const hours = getHandledValue(d.getHours()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const minutes = getHandledValue(d.getMinutes()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const second = getHandledValue(d.getSeconds()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let resStr = '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (startType === 'year') resStr = year + '-' + month + '-' + date + ' ' + hours + ':' + minutes + ':' + second 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else resStr = month + '-' + date + ' ' + hours + ':' + minutes 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return resStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} timeStamp 传入的时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {Number} fmt 格式化字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const formtDate = (timeStamp, fmt) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const d = new Date(timeStamp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var o = { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'M+': d.getMonth() + 1, // 月份 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'd+': d.getDate(), // 日 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'h+': d.getHours(), // 小时 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'm+': d.getMinutes(), // 分 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    's+': d.getSeconds(), // 秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'q+': Math.floor((d.getMonth() + 3) / 3), // 季度 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'S': d.getMilliseconds() // 毫秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (d.getFullYear() + '').substr(4 - RegExp.$1.length)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  for (var k in o) { if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length))) } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return fmt 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+//  获取三个月后的时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const getThreeMonthsAfter = (dtstr) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var s = dtstr.split('-') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var yy = parseInt(s[0]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var mm = parseInt(s[1]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var dd = parseInt(s[2]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  var dt = new Date(yy, mm + 2, dd) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return dt.valueOf() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {String|Number} timeStamp 时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @returns {String} 相对时间字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const getRelativeTime = timeStamp => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 判断当前传入的时间戳是秒格式还是毫秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const IS_MILLISECOND = isMillisecond(timeStamp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 如果是毫秒格式则转为秒格式 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (IS_MILLISECOND) Math.floor(timeStamp /= 1000) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 传入的时间戳可以是数值或字符串类型,这里统一转为数值类型 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  timeStamp = Number(timeStamp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 获取当前时间时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const currentTime = Math.floor(Date.parse(new Date()) / 1000) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 判断传入时间戳是否早于当前时间戳 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const IS_EARLY = isEarly(timeStamp, currentTime) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 获取两个时间戳差值 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let diff = currentTime - timeStamp 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 如果IS_EARLY为false则差值取反 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!IS_EARLY) diff = -diff 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let resStr = '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const dirStr = IS_EARLY ? '前' : '后' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 少于等于59秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (diff <= 59) resStr = diff + '秒' + dirStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 多于59秒,少于等于59分钟59秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (diff > 59 && diff <= 3599) resStr = Math.floor(diff / 60) + '分钟' + dirStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 多于59分钟59秒,少于等于23小时59分钟59秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (diff > 3599 && diff <= 86399) resStr = Math.floor(diff / 3600) + '小时' + dirStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 多于23小时59分钟59秒,少于等于29天59分钟59秒 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (diff > 86399 && diff <= 2623859) resStr = Math.floor(diff / 86400) + '天' + dirStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 多于29天59分钟59秒,少于364天23小时59分钟59秒,且传入的时间戳早于当前 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (diff > 2623859 && diff <= 31567859 && IS_EARLY) resStr = getDate(timeStamp) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else resStr = getDate(timeStamp, 'year') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return resStr 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 日期格式化 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const formatSubmitDate = (val, type) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (val == null || val == '' || val == undefined) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _date = new Date(val) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _year = _date.getFullYear() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _montn = (_date.getMonth() + 1) < 10 ? '0' + (_date.getMonth() + 1) : (_date.getMonth() + 1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _day = _date.getDate() < 10 ? '0' + _date.getDate() : _date.getDate() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _hour = _date.getHours() < 10 ? '0' + _date.getHours() : _date.getHours() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _minutes = _date.getMinutes() < 10 ? '0' + _date.getMinutes() : _date.getMinutes() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const _seconds = _date.getSeconds() < 10 ? '0' + _date.getSeconds() : _date.getSeconds() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (type == 'minutes') return _year + '-' + _montn + '-' + _day + ' ' + _hour + ':' + _minutes 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    else if (type == 'seconds') return _year + '-' + _montn + '-' + _day + ' ' + _hour + ':' + _minutes + ':' + _seconds 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    else return _year + '-' + _montn + '-' + _day 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 正则验证车牌,验证通过返回true,不通过返回false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const isLicensePlate = function (str) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return /^(([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领][A-Z](([0-9]{5}[DF])|([DF]([A-HJ-NP-Z0-9])[0-9]{4})))|([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领][A-Z][A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳使领]))$/.test(str) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 车牌可输入字符 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const isCarNumber = function (str) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let _value = str + '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  _value = _value.replace(/[^\w\.挂学警港澳使领]/ig, '') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return _value 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 小数点后两位 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const numberToFixed = function (val, num) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let _value = val + '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  _value = _value.replace(/[^\d.]/g, '')// 清楚数字和.以外的字数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  _value = _value.replace(/^\./g, '') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  _value = _value.replace(/\.{2,}/g, '')// 保留第一个,清楚多余的 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (num == 1)_value = _value.replace(/^(\-)*(\d+)\.(\d).*$/, '$1$2.$3') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (num == 3)_value = _value.replace(/^(\-)*(\d+)\.(\d\d\d).*$/, '$1$2.$3') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (num == 4)_value = _value.replace(/^(\-)*(\d+)\.(\d\d\d\d).*$/, '$1$2.$3') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (num == 5)_value = _value.replace(/^(\-)*(\d+)\.(\d\d\d\d\d).*$/, '$1$2.$3') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (num == 0)_value = _value.replace(/^(\-)*(\d+)\.*$/, '$1$2') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else _value = _value.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return _value 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 保留decimal位小数(不四舍五入)  num 数值,decimal要保留的小数位数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const formatDecimal = function (num, decimal) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  num = num.toString() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const index = num.indexOf('.') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (index !== -1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    num = num.substring(0, decimal + index + 1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    num = num.substring(0) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return parseFloat(num).toFixed(decimal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 处理数字千位分隔符  num 数值,decimal要保留的小数位数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const toThousands = (num, decimal) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (num == undefined) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return '--' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (decimal) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    num = formatDecimal(num, decimal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return num.toString().replace(/\d+/, function (n) { // 先提取整数部分 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return n.replace(/(\d)(?=(\d{3})+$)/g, function ($1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      return $1 + ',' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+// 只能输入数字 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const justNumber = function (val) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let _value = val + '' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  _value = _value.replace(/\D/g, '') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return _value 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @returns {String} 当前浏览器名称 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const getExplorer = () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const ua = window.navigator.userAgent 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const isExplorer = (exp) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return ua.indexOf(exp) > -1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (isExplorer('MSIE')) return 'IE' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (isExplorer('Firefox')) return 'Firefox' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (isExplorer('Chrome')) return 'Chrome' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (isExplorer('Opera')) return 'Opera' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (isExplorer('Safari')) return 'Safari' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 绑定事件 on(element, event, handler) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const on = (function () { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (document.addEventListener) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return function (element, event, handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (element && event && handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        element.addEventListener(event, handler, false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return function (element, event, handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (element && event && handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        element.attachEvent('on' + event, handler) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+})() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 解绑事件 off(element, event, handler) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const off = (function () { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (document.removeEventListener) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return function (element, event, handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (element && event) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        element.removeEventListener(event, handler, false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return function (element, event, handler) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (element && event) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        element.detachEvent('on' + event, handler) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+})() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 判断一个对象是否存在key,如果传入第二个参数key,则是判断这个obj对象是否存在key这个属性 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 如果没有传入key这个参数,则判断obj对象是否有键值对 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const hasKey = (obj, key) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (key) return key in obj 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const keysArr = Object.keys(obj) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return keysArr.length 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} obj1 对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} obj2 对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 判断两个对象是否相等,这两个对象的值只能是数字或字符串 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const objEqual = (obj1, obj2) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const keysArr1 = Object.keys(obj1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const keysArr2 = Object.keys(obj2) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (keysArr1.length !== keysArr2.length) return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else if (keysArr1.length === 0 && keysArr2.length === 0) return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  /* eslint-disable-next-line */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  else return !keysArr1.some(key => obj1[key] != obj2[key]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/* 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} id 数字 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} list 数组 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 根据id从数组列表中删除某一项 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+*/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const removeListById = (id, list) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  list.splice(list.findIndex(item => item.id === id), 1) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} obj1 对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} obj2 对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 遍历赋值 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+*/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const objExtend = (obj1, obj2) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  for (var a in obj1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    obj2[a] = obj1[a] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return obj2 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @param {*} obj 对象 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * @description 浅拷贝 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+*/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const cloneObj = (obj) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const ret = {} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  for (var a in obj) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ret[a] = obj[a] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return ret 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 校验身份证号合法性 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export const checkIdNumberValid = (tex) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // var tip = '输入的身份证号有误,请检查后重新输入!' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let num = tex 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  num = num.toUpperCase() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const len = num.length 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  let re 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (len == 0) return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X。 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!(/(^\d{15}$)|(^\d{17}([0-9]|X)$)/.test(num))) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 验证前两位地区是否有效 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  const aCity = { 11: '北京', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    12: '天津', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    13: '河北', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    14: '山西', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    15: '内蒙古', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    21: '辽宁', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    22: '吉林', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    23: '黑龙江', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    31: '上海', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    32: '江苏', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    33: '浙江', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    34: '安徽', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    35: '福建', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    36: '江西', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    37: '山东', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    41: '河南', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    42: '湖北', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    43: '湖南', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    44: '广东', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    45: '广西', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    46: '海南', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    50: '重庆', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    51: '四川', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    52: '贵州', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    53: '云南', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    54: '西藏', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    61: '陕西', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    62: '甘肃', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    63: '青海', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    64: '宁夏', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    65: '新疆', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    71: '台湾', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    81: '香港', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    82: '澳门', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    91: '国外' } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (aCity[parseInt(num.substr(0, 2))] == null) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 当身份证为15位时的验证出生日期。 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (len == 15) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    re = new RegExp(/^(\d{6})(\d{2})(\d{2})(\d{2})(\d{3})$/) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const arrSplit = num.match(re) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 检查生日日期是否正确 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const dtmBirth = new Date('19' + arrSplit[2] + '/' + arrSplit[3] + '/' + arrSplit[4]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const bGoodDay = (dtmBirth.getYear() == Number(arrSplit[2])) && ((dtmBirth.getMonth() + 1) == Number(arrSplit[3])) && (dtmBirth.getDate() == Number(arrSplit[4])) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (!bGoodDay) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  // 当身份证号为18位时,校验出生日期和校验位。 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (len == 18) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    re = new RegExp(/^(\d{6})(\d{4})(\d{2})(\d{2})(\d{3})([0-9]|X)$/) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const arrSplit = num.match(re) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 检查生日日期是否正确 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const dtmBirth = new Date(arrSplit[2] + '/' + arrSplit[3] + '/' + arrSplit[4]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const bGoodDay = (dtmBirth.getFullYear() == Number(arrSplit[2])) && ((dtmBirth.getMonth() + 1) == Number(arrSplit[3])) && (dtmBirth.getDate() == Number(arrSplit[4])) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (!bGoodDay) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 检验18位身份证的校验码是否正确。 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 校验位按照ISO 7064:1983.MOD 11-2的规定生成,X可以认为是数字10。 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      let valnum 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const arrInt = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const arrCh = ['1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      let nTemp = 0 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      let i 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      for (i = 0; i < 17; i++) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        nTemp += num.substr(i, 1) * arrInt[i] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      valnum = arrCh[nTemp % 11] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (valnum != num.substr(17, 1)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return false 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  return true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+} 
			 |