ReadingTime 0.9.1
<1 min read
ReadingTIme 0.9.1 is the second release of my Kotlin/Java library used to estimate the reading time of blog posts, articles, etc.
An implementation of the Medium's Read Time calculation which is used extensively on this blog.
val rt = ReadingTime(
text,
wpm = 275,
postfix = "min read",
plural = "min read",
excludeImages = false,
extra = 0,
roundingMode = RoundingMode.HALF_EVEN
)
roundingMode
is a new property.
As usual the source code, documentation and binaries are on GitHub.