When working with cheerio and angular DataTables, I often utilize the $ symbol to extract raw strings from the HTML or add classes like shown below:
$('td', row).addClass('highlight');
if ($('td', row).eq(3)[0].innerHTML === liqs[cIndex]) { ... }
I also rely on it for printing the tables:
$(win.document.body).find('table')...
Should I address this issue or simply disregard the warning?