David Evans
David Evans
I have just encountered a situation where I managed to get an infinite loop due to updating vuex state as part of an asynchronously computed property. In fairness I realise...
Now that I have a working copy of this library (#171), I'm impressed. I'd like to use it in one of my projects, but there are a few missing things....
When trying to build on a Pi Zero W (using DietPi as the base OS) I get the following: > ``` > .../fbcp-ili9341/diff.cpp: In function "int coarse_linear_diff(uint16_t*, uint16_t*, uint16_t*)": >...
Alternative testing approach based on discussion in #41 This introduces a failing test for Node 9+. This is separate from the fix so that it can be combined with any...
Resolves #41 Since `defineProperty` is already used extensively in the rest of the code, it seems safe to use it here without a fallback. [`Function.length` is defined with `configurable: true`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/length),...
This package causes applications to fail to start if using NodeJS's `--disallow-code-generation-from-strings` security option, even if the application is not using a deprecated function, due to the use of dynamically...
Due to the way Arrays are identified, it is possible to construct an object which "looks like" an array, but only when passed as the second argument: ```javascript const v1...
As discussed in #3715 This replaces the external library `ua-parser-js` with an in-house version which has a significantly reduced scope. The parser has been written from scratch with a focus...
It seems ua-parser-js has been the source of several security issues: 1. https://github.com/karma-runner/karma/issues/3562 (regex catastrophic backtracking) 2. https://github.com/karma-runner/karma/issues/3583 (regex catastrophic backtracking) 3. https://github.com/karma-runner/karma/issues/3680 (regex catastrophic backtracking) 4. https://github.com/karma-runner/karma/issues/3713 (malware compromise)...
The following configuration results in only Chrome being headless: ```java @FluentConfiguration( webDriver = "chrome", capabilities = ("{" + "\"moz:firefoxOptions\": {\"args\": [\"-headless\"]}," + "\"goog:chromeOptions\": {\"args\": [\"headless\", \"disable-gpu\"]}" + "}") ) ```...