Alex Indigo

Results 143 comments of Alex Indigo

That's the plan, to make it library for libraries. We will split it. And yes Streams need more love. :) First step would be test coverage, though.

Yep, I do like leveldb approach. And thanks a lot for the tests. We'll incorporate them into new test suite.

@DylanPiercey I thought you'd like the idea of `submit`-less FormData :) Exactly like in the browser. For now Grandiose Plan looks like following: - Cover everything with tests - Release...

There is more than one way to express boolean value as a string, I mean there are many servers/apps that do it differently. For example just few I bumped into...

Everything is a string on the wire. :) And there are not so many way to represent numbers as a string, I can come up with two on top of...

In PHP land you'd see a lot of `if ($_POST['value'])` or with latest trend on being strictly equal, something like `if ($_POST['value'] === '1')`. :)

It might be bug in the browser implementation. Clearly it's the least expected default, most used would be `1` and `0`, but again it doesn't cover all the cases. So...

In many cases client side passes empty string as false and script just treat it as falsy value. As for crashing :) You'd want your script to crash other than...

Most webapps still built expecting data coming from html forms (if it comes from js apps, usually it's a json blob, unless files). And many server side endpoints looks like...