We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e2c25 commit e577e49Copy full SHA for e577e49
src/traces/parcoords/calc.js
@@ -46,10 +46,6 @@ function constHalf(len) {
46
return out;
47
}
48
49
-function isTypedArray(a) {
50
- return !Array.isArray(a) && Lib.isArrayOrTypedArray(a);
51
-}
52
-
53
function convertTypedArray(a) {
54
- return (isTypedArray(a)) ? Array.prototype.slice.call(a) : a;
+ return (Lib.isTypedArray(a)) ? Array.prototype.slice.call(a) : a;
55
0 commit comments