From ce53e16adedc78b715352c29b48cfe47751b3fdb Mon Sep 17 00:00:00 2001 From: jmoenig Date: Mon, 22 Jun 2020 13:03:42 +0200 Subject: [PATCH] removed a duplicate function definition --- src/threads.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/threads.js b/src/threads.js index 122e6bfb..b719a0bd 100644 --- a/src/threads.js +++ b/src/threads.js @@ -3566,10 +3566,6 @@ Process.prototype.hyperDyadic = function (baseOp, a, b) { return baseOp(a, b); }; -Process.prototype.isMatrix = function (value) { - return value instanceof List && value.at(1) instanceof List; -}; - Process.prototype.hyperZip = function (baseOp, a, b) { // enable dyadic operations to be performed on lists and tables var len, i, result;