Oliver Swienty

Results 2 issues of Oliver Swienty

When using \n without anything else it matches nothing. When using "\n*" it suddenly finds matches. I think this might be an issue of how the regex is constructed as...

When I have this input: `test ` and I run this code: ```javascript import * as cheerio from 'cheerio'; const input = `test `; const $ = cheerio.load(input, { xmlMode: false, decodeEntities:...