Skip to content

Commit 85b0300

Browse files
committed
fixed testflow runner throwing error
1 parent d24bef1 commit 85b0300

File tree

1 file changed

+9
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/variancech/lib

1 file changed

+9
-2
lines changed

lib/node_modules/@stdlib/stats/base/variancech/lib/index.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,14 @@
4848
var main = require('./main.js');
4949
var ndarray = require('./ndarray.js');
5050

51+
// MAIN //
52+
53+
function variancech(N, correction, x, stride) {
54+
return main(N, correction, x, stride);
55+
}
56+
57+
variancech.ndarray = ndarray;
58+
5159
// EXPORTS //
5260

53-
module.exports = main;
54-
module.exports.ndarray = ndarray;
61+
module.exports = variancech;

0 commit comments

Comments
 (0)