Linus Unnebäck
Linus Unnebäck
Opening for early feedback. @jonathanong I would like a way to surpress the `console.error` call since I've already sent the error to Sentry, and my logs follow a json format....
As far as I can tell from reading [RFC7578 Section 4.2](https://tools.ietf.org/html/rfc7578#section-4.2) the filename is **not** mandatory. Currently multer ignores files without a filename, [relevant code here](https://github.com/expressjs/multer/blob/7ef2e81215e9b773204df44fb4aee29e58340061/lib/make-middleware.js#L97-L98). I think that this...
For some reason two very similar images that contains semi-transparent pixels are considered different. ### `reference`  ### `current`  ### `diff` 
You are adding a bound function but then removing the original function, it won't work. ``` javascript function hello() { console.log('Hello'); } el.addEventListener('mousein', hello.bind(this)); el.removeEventListener('mousein', hello); // Nothing will be...
How cool would it be to have this as an apache module? Not that anyone would use it, but you know, for internet points!
Currently we are using something like this to test our API with a mocked version of MongoDB, without having to specifically having to code the app to know anything about...
The following code: ```js const productStateCollection = connected_db.collection('ProductState') const productCollection = connected_db.collection('Product') let product = (await productCollection.insert({ name: 'Test' })).ops[0] let state = (await productStateCollection.insert({ price: 4900 })).ops[0] product =...
Hi @lhagan, I forked your repo and turned it into a generic javascript plugin instead of depending on jQuery. It now emits a `deviceshake`-event on the window object. I also...
### Description This is a replacement to #3409, from the knowledge I got there I could implement this properly instead of just improving the error message! Now it actually fixes...
This rule is on its way into the latest Standard ☺️ ref: https://github.com/standard/eslint-config-standard/pull/166 Compatibility: This syntax works on Node.js 4.x and up, and this package declares Node.js 4.x as the...