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 b77c0a1 commit 2bf0ccfCopy full SHA for 2bf0ccf
Linear-Algebra/src/la_lib.js
@@ -309,3 +309,5 @@ let LinearAlgebra;
309
}()) // end of class Matrix
310
LinearAlgebra.Matrix = Matrix
311
})(LinearAlgebra || (LinearAlgebra = {})) // end of namespace LinearAlgebra
312
+
313
+export { LinearAlgebra }
Linear-Algebra/test/test.js
@@ -7,11 +7,12 @@
7
*/
8
/* eslint-disable */
9
10
+import { LinearAlgebra } from "../src/la_lib"
11
12
var assert = require('assert')
13
var fs = require('fs')
14
15
// file is included here
-eval(fs.readFileSync('src/la_lib.js') + '')
16
// Tests goes here
17
18
// creating some vectors
0 commit comments