Laurence Ede
Laurence Ede
This looks like intended behaviour - `$7KJ` is being interpreted as a variable and expanded (to nothing). `$` should be escaped or removed.
> How do you escape? `\$` should do it. You may need to escape the escape character itself like this `\\$`.
Disclaimer - I'm not a maintainer of this library, but I would guess it doesn't mention it in the docs as it isn't a behaviour specific to this library. Variable...
We've just upgraded to v4, and were originally using the v3 `setLogger` API to suppress console errors for during our tests. Ironically, doing the equivalent in v4 achieves the same,...