Dmitry Volyntsev
Dmitry Volyntsev
Hi @hcmf-wice, Feel from to test the following [patch](https://gist.github.com/xeioex/b6d5855779d55fe39407929ce488c5f2). The patch fixes the problem I described above, so s.send() should send data in a proper direction, even if it was...
Hi @hcmf-wice, Yes, I am planning to add the patch for the next release.
Was fixed in https://github.com/nginx/njs/commit/569292e0a74f2b1ec09566f3329f82bdd0d58e87.
Hi @HermannLizard, We are planning to open source [keyval](http://nginx.org/en/docs/http/ngx_http_keyval_module.html#keyval_zone) module for this.
@drsm > But by introducing some new vmcodes, the O(1) for( of ) can be made. you are suggesting to hide the returned value right and operate on njs_value_iterator_t? for...
@drsm > Introduced initial iterator support. Thanks, committed.
@sly-roar The feature is in progress, is planned for 0.7.0.
Known bugs to fix: ```js >> var x = function(a = 1, b = 1, c = () => a + b) { var a = 2, b = 2;...
@drsm We decided to postpone this feature because of non-trivial limitations. In the current architecture we cannot guarantee correct execution (and catching all possible unsupported cases) when there are function...
@drsm fixed all the cases, including ComputedPropertyName. Also the committed patch avoids runtime overhead when "name" is not used in most cases.