Jake Verbaten

Results 307 comments of Jake Verbaten
trafficstars

> The best production artifact is one that is properly trimmed and has a reduced surface area. It's one that takes a short time to build. This is a build...

@juliangruber you are using `yield` both for yielding a value from the stream and for doing something asynchronous For example you need to open a file descriptor asynchronously. That requires...

Interesting, I re-read the spec. Your implementing a stream as a stateful generator function that will `return` a value from the stream each time it's called. That is actually possible...

@ianb > like in the Spy case. this statement is vague and not obvious. You should explain it in more detail.

@ianb does this mean you have a special case for spies? Or do you generically attach a `// =>` call below a function call where the last statement of the...

:+1: for licence.

Implemented in https://github.com/JSMonk/hegel/pull/251

A seperate README for `@hegel/cli` and `@hegel/core` would be good. The same README for both is better then no readme for either. I wanted to add a README instead of...

```js const numbers: Array = [1, 2, 3]; let intSequence = ""; numbers.length = 5; for (let i = 0; i < numbers.length; i++) { // TypeError: Cannot read property...

```js someArray.length = 0 ``` You can make an exception that assigning the NumberLiteral `0` to `.length` does not convert it into a "holey array" since it truncates to an...