Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 261 Bytes

0509.md

File metadata and controls

12 lines (11 loc) · 261 Bytes

判断时间戳格式是否是毫秒

/**
 * @param {Number} timeStamp 判断时间戳格式是否是毫秒
 * @returns {Boolean}
 */
const isMillisecond = timeStamp => {
  const timeStr = String(timeStamp)
  return timeStr.length > 10
}