Using nodejs.util.inspect.custom in this simple nodejs-polars example produces a different result in bun vs. node. Any ๐ก? Thx
import pl from 'nodejs-polars';
console.log(pl.DataFrame([{ a: 1, b: 2,}]));
Node:
shape: (1, 2)
โโโโโโโฌโโโโโโ
โ a โ b โ
โ --- โ --- โ
โ f64 โ f64 โ
โโโโโโโชโโโโโโก
โ 1.0 โ 2.0 โ
โโโโโโโดโโโโโโ
Bun:
ProxyObject {
a: shape: (1,)
Series: 'a' [f64]
[
1.0
],
b: shape: (1,)
Series: 'b' [f64]
[
2.0
],
}