ICIJ/datashare-client

View on GitHub
src/utils/humanTime.js

Summary

Maintainability
A
0 mins
Test Coverage
import moment from 'moment'

export function humanTime(date, locale) {
  return moment(date).locale(locale).format('HH:mm')
}