Alex Buglak

Results 6 comments of Alex Buglak

@JaoodxD Yes, you are right. For unknown to me reasons the code was formatted using wrong eslint config(with arrow-parens: as-needed). So its already fixed. Thank you for the comment/review.

I can also write a pull request for it, just how I see it must works

As discussed in the meeting I made 2 commits. First is for using [universal error handling for hook and RPC methods](https://github.com/metarhia/metacom/pull/493/commits/0cef592a1442f43a7ee99c21fc1310fd38b416d8#diff-1b48bb429de959672dadab9c87c215e19177dd70e3bd932d131ce74294c44cd5R337-R340) and second(last) one is for reusing of code.

If I understand you correctly, default values must be used after timeout after initialization of collector and not after `set` command #231

I can also help with writing tests and documentation

> ```ts > type FutureExecutor = (resolve: Function, reject?: Function) => void; > > export class Future { > // #1 > constructor(executor: FutureExecutor); > // #2 > constructor(executor: Function);...