Lazar Ljubenović
Lazar Ljubenović
Sounds good! I'd just change the naming to `value`, `key` and `iterable`/`iteratee`, to cover each of three big iteratees in JavaScript ([`Array#forEach`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach#Description), [`Map#forEach`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach#Description) and [`Set#forEach`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/forEach)). This will cover custom iterables,...
I looked around a bit in my code to see where I could apply this and there are only a few exceptions to the rule I've found: I always indent...
For a moment I thought this could be a solution for https://github.com/dsherret/ts-morph/issues/357, and I got so excited :smile: But just to be sure: although all of assertions in this repo...
TypeScript's default choice is indeed that `arr[index]` doesn't handle the `undefined` case; however, there's a case for including `undefined` in the type as well: Typescript [itself](https://github.com/microsoft/TypeScript/blob/a4bacf3bfaf77213c1ef4ddecaf3689837e20ac5/lib/lib.dom.d.ts#L6530-L6534) defines these with an...
> if you have two or more nested custom form components I'm curious: what's the use case?
That should be [a reusable form group](https://stackoverflow.com/a/46025197/2131286). I don't think it makes sense to put fields inside fields.
I think following the trail from [this issue](https://github.com/staltz/rxmarbles/issues/1) might be a good starting point at not only adding the diagrams, but making them interactive. I agree that visual representation of...
I am disappointed that `defaultMessage` has to return string as per the `ValidatorConstraintInterface` interface. Every API should return objects representing an error, not (only) human-readable sentences. `length: { min: 1,...
Why are we not crafting SVGs? On Wed, Mar 13, 2019, 06:18 Yue Lin Ho wrote: > Note: Lunacy 3.14 > > — > You are receiving this because you...
I remember when reading the book for the first time without knowing _anything_ about Git, I also had a slight impression "OK, this is a chapter for old folks who...