Cody A. Taylor
Cody A. Taylor
I have a high distain for reporters where **silence** means "everything is fine".  Recently I changed some tests in a core project of mine and found that...
I just finished writing [toflush](//github.com/CodeMan99/toflush) because I wanted something that could consume both sync and promise-returning values inside of a stream. I couldn't quite find anything out there I liked....
Opening as an Issue because I am not sure where to land the code. ```javascript /** * Convert a flat object to an array of values suitable for use with...
Opening as issue because I am not sure where the code should land. Shipping a writable wrapper is easy as defining `_write` and `_final` methods. ```javascript const {Writable} = require('stream');...
## Describe the bug in a sentence or two. Many options type arguments are using [union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) when the intention is an [intersection](https://www.typescriptlang.org/docs/handbook/2/objects.html#intersection-types). ## Issue Type (Can be multiple) * [...
I had the same issue as #53 & #87. Can we please document the use of `req.originalUrl` in the README?
Specifically, I want to always specify `--no-install` and I want that configuration to be very robust such that it isn't shell dependent. Executing remote code can be dangerous. Then you...
Quite possible I missed something visually while using this tool. If that is the case, just let me know. 1. I had two conflicts in the same file. I clicked...
Implements #1091 with documentation.
For the [Binary Search](https://exercism.org/tracks/fsharp/exercises/binary-search) exercise, there is nothing to prevent an implementation using [`Array.tryFindIndex`](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-arraymodule.html#tryFindIndex). So this implementation is accepted. ```fsharp module BinarySearch let find input value = Array.tryFindIndex ((=) value)...