fent
fent
when the stream ends you always get the 404 error? as in, for every single stream?
I think this simply requires a `decodeURIComponent` call. can you post the file here, or part of it? I can't access it with the above link
still not sure how to handle this. should ret output a different token for the `.` set when the `s` flag is set? or should flags be handled by what...
> If I do all this work (which would basically amount to a rewrite), would you be interested in merging them under a new major version number or would you...
it would be nice to be able to pipe a list of files to ripgrep. right now, I searched for a second pattern in files matching a first pattern with...
Are you using a package bundler? If so, which one? My understanding is that in the future, bundlers will handle transpiling, letting library authors focus only on the library, and...
they're not supported. but if they were, randexp would return a string, not an object pointing to each group
The default range for sets includes only printable ASCII characters https://github.com/fent/randexp.js#default-range you can change it with something like the following ```js RandExp.prototype.defaultRange.add(0, 65535); ``` or with instances ```js let randexp...
I'm leaning towards @michaelficarra in that the default range should be respected for predefined sets, but for custom non-negated sets like in the OP (e.g. `[А-Я]{1,5}[а-я]{5,10}`), could ignore the default...
Going to unify #15 and #17 into this issue. Right now, I don't know how this would be accomplished. Specially with groups within groups and groups that come after lookaheads....