util.js 1.4 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3
const _toString = Object.prototype.toString
const hasOwnProperty = Object.prototype.hasOwnProperty

4 5 6 7
const _completeValue = value => {
  return value > 9 ? value : ('0' + value)
}

fxy060608's avatar
fxy060608 已提交
8 9 10
export function isFn (fn) {
  return typeof fn === 'function'
}
fxy060608's avatar
fxy060608 已提交
11 12 13 14 15

export function isStr (str) {
  return typeof str === 'string'
}

fxy060608's avatar
fxy060608 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
export function isPlainObject (obj) {
  return _toString.call(obj) === '[object Object]'
}

export function hasOwn (obj, key) {
  return hasOwnProperty.call(obj, key)
}

export function noop () {}

export function toRawType (val) {
  return _toString.call(val).slice(8, -1)
}

export function setProperties (item, props, propsData) {
  props.forEach(function (name) {
    if (hasOwn(propsData, name)) {
      item[name] = propsData[name]
    }
  })
}

fxy060608's avatar
fxy060608 已提交
38
export function getLen (str = '') {
fxy060608's avatar
fxy060608 已提交
39 40
  /* eslint-disable no-control-regex */
  return ('' + str).replace(/[^\x00-\xff]/g, '**').length
41 42 43 44 45 46 47 48 49 50 51
}

export function formatDateTime ({
  date = new Date(),
  mode = 'date'
}) {
  if (mode === 'time') {
    return _completeValue(date.getHours()) + ':' + _completeValue(date.getMinutes())
  } else {
    return date.getFullYear() + '-' + _completeValue(date.getMonth() + 1) + '-' + _completeValue(date.getDate())
  }
fxy060608's avatar
fxy060608 已提交
52
}
53 54 55 56 57 58

export function updateElementStyle (element, styles) {
  for (let attrName in styles) {
    element.style[attrName] = styles[attrName]
  }
}