Importing cheerio
1. I use
import * as cheerio from "cheerio";2. So when I try to use
const $ = cheerio.load(body);3. I'm getting the message:
TypeError: cheerio.load is not a function. (In 'cheerio.load(body)', 'cheerio.load' is undefined)I'm probably doing something wrong, but what could it be?