/home/bdqbpbxa/api-uniferx.goodface.com.ua/vendor/laravel/nova/resources/js/util/hourCycle.js
export default function (locale) {
  let hourCycle = Intl.DateTimeFormat(locale, {
    hour: 'numeric',
  }).resolvedOptions().hourCycle

  if (hourCycle == 'h23' || hourCycle == 'h24') {
    return 24
  }

  return 12
}