Andrew-Cottrell

Results 7 issues of Andrew-Cottrell

https://github.com/google/closure-library/blob/master/closure/goog/math/rangeset.js#L29 ``` * Ranges are treated as half-closed: that is, they are exclusive of their end * value [start, end). ``` https://github.com/google/closure-library/blob/master/closure/goog/math/range.js#L176 ``` goog.math.Range.containsPoint = function(range, p) { return range.start...

The `Array.prototype.indexOf` polyfill is not standards compliant. https://github.com/xdan/datetimepicker/blob/2.5.20/jquery.datetimepicker.js#L758 It has incorrect behaviour when 1. the `fromIndex` is negative 2. the caller requests the index of `undefined` in a sparse array...

The documentation for [isPlainObject](https://api.jquery.com/jQuery.isPlainObject/) indicates the following evaluates to `true`, but in jQuery v3.5.1 it evaluates to `false`. ```jQuery.isPlainObject( { [Symbol.toStringTag]: "Tag" } );``` I suggest the documentation be changed...

The page https://webhint.io/docs/user-guide/hints/hint-highest-available-document-mode/#what-does-the-hint-check currently says > By default, the hint checks if the `X-UA-Compatible` response header is sent with the value of **`IE=edge`**, and that the `meta` tag isn’t used....

area:documentation
difficulty:easy
good first issue
enhancement

My current — and potentially incorrect — understanding is that the proposed `LastYieldValue` component of _genContext_ is almost the same thing as the `received.[[Value]]` mentioned in - [**14.4.14 Runtime Semantics:...

Browser: Chrome 80.0.3987.132 OS: Windows 1909 Uncaught Error: missing: 9 at e (index.js:formatted:3765) at Object.n.generateNestedData (index.js:formatted:1149) at Object.refresh (index.js:formatted:925) at toggleMeltdownSpectre (filter.js:57) at filter (filter.js:107) at (index):406 Reproduce 1. Open...

I recently wrote the following methods and thought they could be added to the _bytes-java_ library if it is believed that they might be useful to other people. ```java /**...