upgrading d3-scale to v2.4 is causing an error in IE in the following code
SCRIPT1004: Expected ';'
/***/ "./node_modules/d3-array/src/count.js":
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return count; });
function count(values, valueof) {
let count = 0;
if (valueof === undefined) {
-> for (let value of values) {
if (value != null && (value = +value) >= value) {
++count;
}
}
Having the same issue.
you mean d3-array@2
please see https://github.com/d3/d3-array/releases/tag/v2.0.0
Most helpful comment
Having the same issue.