Motin

Results 54 issues of Motin

After employing gmail-batch-stream, the node process does not exit at the end, despite the stream being consumed fully (using done() or toArray()).

For whatever reason, the pseudo gmail client returned promises, causing havoc in this library. In the end, I had to change the usage example to resolve promises using `.flatMap(_h)` before...

Cause: When a 404 response is encountered, the body is not JSON, but plain text. ``` HTTP/1.1 404 Not Found Content-Type: text/html; charset=UTF-8 Date: Thu, 13 Dec 2018 22:36:43 GMT...

This is a great addition to the world of open source! Thanks! However, with highland.js at 3k stars and rxjs at 16k stars, rxjs seems to have a wider adoption...

I tried it out but ran into many issues (will report them separately as soon as I get some idea if they are all the same issue or several different...

The latest version of AVA is currently 1.1.0, and ava-ts only supports 0.* (which currently resolves to AVA 0.25.0)

question

I recently setup ocLazyLoad in an Angular-app that was loading something like 150 controllers/services/js-libraries etc. Only about 10 was necessary for rendering the main landing page, and with lazy-loading, that...

Had to add the following chars for [our transliteration test](https://gist.github.com/motin/a65e6c1cc303e46900d10894bf2da87f) to pass: ``` URLify::add_chars( array( 'Ÿ' => 'Y', 'µ' => 'u', '¥' => 'Y', 'Ĉ' => 'C', 'ĉ' => 'c',...

The results of: ``` python -m isort -rc --skip venv . python -m autopep8 -r --in-place --exclude venv . ```