UNPKG

fetch-fic

Version:

Package up delicious, delicious fanfic from various sources into epub ebooks ready for reading in your ereader of choice.

10 lines (9 loc) 287 B
'use strict' module.exports = countStoryWords const cheerio = require('cheerio') const wordcount = require('wordcount') function countStoryWords (chapter) { const $content = cheerio.load(chapter.content) $content('.bbCodeQuote').remove() return wordcount($content.text().trim()) }