Files
DefinitelyTyped/types/cheerio
isMeCoder 5bca979247 .html() can return null
.html() can return null when querying an element that does not exist. 

Repro:

        const response = await axios.default.get('https://www.google.com/')
        const $ = cheerio.load(response.data)
        const foo = $('.bar').html()
        console.log(`foo is: ${foo}`) //foo is: null
2017-10-30 10:11:20 -07:00
..
2017-10-30 10:11:20 -07:00