article-parser
Version:
To extract main article from given URL
12 lines (9 loc) • 310 B
JavaScript
// utils -> getTimeToRead
import { getParserOptions } from '../config.js'
export default (text) => {
const words = text.trim().split(/\s+/g).length
const { wordsPerMinute } = getParserOptions()
const minToRead = words / wordsPerMinute
const secToRead = Math.ceil(minToRead * 60)
return secToRead
}