Evgeny

Results 623 comments of Evgeny

It is in the function body already, but browserify simply bundles together everything that is required... Maybe the right thing is to have one index file which is the same...

I can use it with browserify too (without sha1). It's just that id adds almost 6000 lines to the bundle... So my idea was to make a second file for...

Maybe I simply have to load it separately in the browser. As it's used in the framework all dependencies of which are relatively small we had everything in one bundle......

That's not possible, really. The idea is that the value that yield returns is resolved and the code continues to execute synchronously. For parallel requests you need to yield an...

it probably was used, but doesn't seem to be used any more...

I believe it is not recommended In JS to have objects with null prototype (even though it is technically possible) - What is the reason to use them (and to...

Thank you - I commented there. The design decision here is to consider instances of different classes (i.e. with different prototypes in JS) as not equal, even if they have...

@fabiospampinato That is a breaking change, but it makes sense to not just iterate their properties and only compare by reference. PR is welcome.

I don't mind supporting cycles with some extra option, as long as it doesn't affect performance in the main use case (it can be difficult though). Documenting would definitely be...