Peter Jaszkowiak
Peter Jaszkowiak
Can you provide an example which used to work and no longer does? Put it in a code block please
You had an inline code segment but I fixed it to a code block. It appears that the formatting you're describing is equal to what GitHub does.
Did you block out a bunch of stuff with white boxes? If so, can you change to some other color? Otherwise it's difficult to tell what is supposed to be...
Just gonna leave this here: https://github.com/jonschlinkert/markdown-toc Oh, and commonmark is cool, too: https://www.npmjs.com/package/commonmark
@theScottyJam it's taken me a while to get to this. > What functionality do you feel like we're losing via explicit completion values? Using Rust, I fell in love with...
Why can't I return an object literal directly like so? ``` let x = do { { a: 1, b: 2 } }; ```
Ah I suppose that makes sense. Is an object literal the only case like this?
If you're returning a closure, why not just use an arrow function? ``` const pointDist = do { let memoizationCache = {}; (x,y) => { let key = `${x},${y}`; if...
Dynamic `this` binding is the only real application there. `...args` replaces arguments, and you can use a variable in place of a lexical name. Seems like a pretty rare application,...
I'm fine with an optional keyword to denote the completion value: I just won't use it. But I strongly oppose requiring the keyword. The lack of return is one of...