contains
deprecatedIn order to promote consistency with the jQuery library, users are encouraged to instead use the static method of the same name.
@example
const $ = cheerio.load('<div><p></p></div>');
$.contains($('div').get(0), $('p').get(0));
//=> true
$.contains($('p').get(0), $('div').get(0));
//=> false
const contains: staticMethods.contains;