export const globalClick = (callback: any) => {
  document.addEventListener('click', callback)
}

export const getRect = (el: any) => {
  return el.getBoundingClientRect()
}

export const padZero = (str: number): string => {
  return String(str).padStart(2, '0')
}
