Arend van Beelen jr.
Arend van Beelen jr.
Fixes the first part of https://github.com/denoland/deno/issues/14846.
This is the second part of https://github.com/denoland/deno/issues/14846. The test won't succeed yet, because while this PR allows for passing `--compat` now, the generated bundle contains Deno's `std/node` library, which I...
Note I moved the installation of dependencies to a separate function. This has the side-effect of detecting whether PnP/Yarn/package-lock are used twice. I think this is desired, as it'll make...
The following snippet will result in an iterator promise returned by `next()` that never resolves: ```js const iterator = new PubSub().asyncIterator(); const promise = iterator.next(); iterator.return(); await promise; // will...
Strings (surrounding with double quotes) in filtrex expressions cannot contain any double quote characters themselves. I'll open a PR to address this.
~~This PR makes it possible to use double quotes inside strings, provided they're escaped with a preceding backslash.~~ Please see the updated version here: https://github.com/m93a/filtrex/pull/12
This PR simply removes some warnings when using this library in another project. The `buildToolsVersion "23.0.1"` should be specified by the host project, and triggers warnings when a library specifies...
## Search Terms JSDoc class properties any key `@property` ## Suggestion I would like to be able to extend the type of an ES6 class using JSDoc comments, such that...
### Description I realize this may be a nitpick, but I found the name `noConditionalAssignment` to be confusing and thought it would relate to code such as this: ```js let...