Misha Kaletsky
Misha Kaletsky
For AWS serverless Aurora accessed via lambda, the recommended way to talk to a db is via the [data api](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html). There's already a [client](https://www.npmjs.com/package/data-api-client) which is very close to the...
Repro (bash): ```bash echo 'export type A = [one: 1, two: [three: 3, four: 4]]' > test.d.ts npx [email protected] test.d.ts out.d.ts cat out.d.ts ``` Result: ```typescript export type A =...
I haven't used the template because this is **not a bug**. Sometimes, I write, or see others write, refactors mean turning a const value into something returned by a function....
Replaces #5839 Fixes #5848 **Summary** Adds the ability to register custom formats (could be xml, po, binary, json5, etc.). Also adds the requested tests and docs from the last PR...
Fixes #1593 **Summary** Adds an approve button to the workflow UI. Many limitations, this is about as far as I could get without some context/guidance: - GitHub-only, not GitLab, Azure...
## Description If a `lint` scripts exists in package.json, run it after bumping the `version` field, and before publishing. **Is the feature request related to a problem?** Kind of. It...
## Description It'd be nice if `np` would ask me if I deliberately added a dependency (as opposed to forgetting to use `yarn add --dev`). Similar to the new files...
This can lead to some pretty strange behaviour: ```js const ow = require('ow') const array = ow.array ow([1], array) // ok ow([''], array.ofType(ow.string)) // ok ow([1], array) // ArgumentError: (array)...
As someone who was firmly in the F# and partial application camp, I'm very interested in the teeny section at the end of the readme called [Tacit unary function application](https://github.com/tc39/proposal-pipeline-operator#tacit-unary-function-application)....