csimi

Results 5 comments of csimi

As far as I can see, xhr-mock doesn't do any parsing based on the mime type, so implementing this as a noop wouldn't cause any issues. Either way overrideMimeType is...

Other than that it seems that all dependencies are locked to a single version which makes deduplication a no-go. Also, if a vulnerability is found in any other dependency it's...

I wonder why the `produce-source-map` option of nyc is not documented in the first place, source-map-support is useless without it.

It's pretty easy to keep the xhr but you're getting into pyramid territory. Return a new promise chain. ``` qwest .get(...) .then(function (response, xhr) { return Promise .resolve(response) .then(function (???)...

This happens because in modern-syslog `log()` is async (it's right there in the description but doesn't specify that the other methods are still sync). In your snippet `close()` runs earlier...