Toni Ruottu
Toni Ruottu
The current release package seems to be broken. I did manage to use the package with TypeScript since it somehow miraculously transforms the code. However, I couldn't get my tests...
See the example below ``` $ pwgen -n 2 1 Rh $ brew info pwgen|head -n 1 pwgen: stable 2.08 (bottled) ```
It would be nice to know which ES5 and ES6 features are usable in Google Apps Script. See https://developers.google.com/apps-script/ for details.
It would be nice to know if all implementations are implementing strict mode scoping as expected. Maybe we could add a test to check this? Perhaps something like... ``` foo...
It would be useful to see suggested technologies and their popularity in addition to the technologies that are already being tracked by Caniuse. The information about suggested technologies is available...
## 🐛 Bug report ### Current Behavior After compiling with `tsc` the resulting `.d.ts` files end up having broken declarations. At least the `... 4 more ...` part of the...
When [generating codecs from JSON schemas](https://www.npmjs.com/package/io-ts-from-json-schema) it seems useful to define field types and required fields separately. To do this I would need a codec for `Exclude`. ```typescript type Example...
JSON Schemas has a `false` schema that should consider all inputs to be invalid. The [draft specification](https://www.ietf.org/archive/id/draft-handrews-json-schema-02.txt) describes it as follows. ``` true: Always passes validation, as if the empty...
Prevent Yarn from generating garbage in non-project directories that do not contain `package.json` file anywhere up the tree. - [ ? ] I'd be willing to implement this feature ([contributing...
According to $schema keyword [definition](https://json-schema.org/understanding-json-schema/reference/schema.html) the official `{ "$schema": "http://json-schema.org/draft/..." }` declarations should not be used with schemas containing custom keywords. Does AJV have a recommended $schema URI for use...