To install dependencies:
bun install
To run:
bun test
import { Polytope } from "polytope";
const data = [{ price: 100 }, { price: 200 }];
const polytope = new Polytope({ data, functions: [] });
const formula = "=SUM({price})";
const result = polytope.execute(formula);