PrevPrevious commit
Next Next commit
fixed testflow runner throwing error
  • Loading branch information
@thedeeppp
thedeeppp committedMar 12, 2025
commit 85b0300ae367659e8375526e2ff5f2959df8674b
Original file line numberDiff line numberDiff line change
Expand Up@@ -48,7 +48,14 @@
var main = require('./main.js');
var ndarray = require('./ndarray.js');

// MAIN //

function variancech(N, correction, x, stride) {
return main(N, correction, x, stride);
}

variancech.ndarray = ndarray;

// EXPORTS //

module.exports = main;
module.exports.ndarray = ndarray;
module.exports = variancech;