UNPKG

estimated-reading-time

Version:

Calculate the estimated reading time of a given text (plain text or HTML)

5 lines (4 loc) 236 B
import * as nodeHtmlParser from 'node-html-parser'; export declare const parse: typeof nodeHtmlParser.parse; export declare function wordCountHtml(html: string): number; export declare function wordCountPlainText(text: string): number;