@hackage / human-readable-duration

Provide duration helper

Latest0.2.1.4

About

Metadata

  • Last updated , by yogsototh
  • License BSD-3-Clause
  • Maintained by: yann.esposito@gmail.com

  • Lottery factor: 0

Links

Installation

Readme

Build Status

Hackage human-readable-duration human-readable-duration

Issue Count

Human Readable Duration

This is a minimal Haskell library to display duration. It is mostly unsafe as it uses only Int and Strings (not even Text nor ByteString).

Usage

> import Data.Duration
> let duration = 2*ms + 3*oneSecond + 2*minute + 33*day + 2*year
> humanReadableDuration duration
"2 years 33 days 2 min 3s 2ms"
> getYears duration
2
> getDays duration
763
> getMs duration
65923323002

Install

Install stack.

stack build