@jrc03c/js-math-tools
Version:
some math tools for JS
48 lines (42 loc) • 1 kB
JavaScript
import { DataFrame, Series } from "./dataframe/index.mjs"
import { expect, test } from "@jrc03c/fake-jest"
import { forEach } from "./for-each.mjs"
import { isSeries } from "./is-series.mjs"
import { normal } from "./normal.mjs"
class SubSeries extends Series {}
test("tests that series can be correctly identified", () => {
expect(isSeries(new Series(normal(100)))).toBe(true)
expect(isSeries(new SubSeries(normal(100)))).toBe(true)
const selfReferencer = [2, 3, 4]
selfReferencer.push(selfReferencer)
const wrongs = [
0,
1,
2.3,
-2.3,
Infinity,
-Infinity,
NaN,
"foo",
true,
false,
null,
undefined,
Symbol.for("Hello, world!"),
[2, 3, 4],
[
[2, 3, 4],
[5, 6, 7],
],
x => x,
function (x) {
return x
},
{ hello: "world" },
selfReferencer,
new DataFrame({ foo: [1, 2, 4, 8, 16], bar: [1, 3, 9, 27, 81] }),
]
forEach(wrongs, item => {
expect(isSeries(item)).toBe(false)
})
})