@truecalc/core 8.2.0 → 8.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/truecalc_wasm.d.ts +1 -2
- package/truecalc_wasm_bg.wasm +0 -0
- package/truecalc_wasm_bun.d.ts +1 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
WebAssembly-powered spreadsheet formula engine for JavaScript/TypeScript.
|
|
11
11
|
|
|
12
|
-
A comprehensive library of spreadsheet functions (see the live count above). Runs in Node.js, Bun, Deno, and the browser — no server needed. Ground-truth conformance against real Google Sheets. The same engine is also available as a [Rust crate](https://crates.io/crates/truecalc-core)
|
|
12
|
+
A comprehensive library of spreadsheet functions (see the live count above). Runs in Node.js, Bun, Deno, and the browser — no server needed. Ground-truth conformance against real Google Sheets. The same engine is also available as a [Rust crate](https://crates.io/crates/truecalc-core).
|
|
13
13
|
|
|
14
14
|
```js
|
|
15
15
|
const { evaluate } = require('@truecalc/core');
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@truecalc/core",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "Spreadsheet formula engine for the browser — Google Sheets–compatible formula evaluator compiled to WebAssembly",
|
|
5
|
-
"version": "8.2.
|
|
5
|
+
"version": "8.2.1",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
package/truecalc_wasm.d.ts
CHANGED
|
@@ -104,8 +104,7 @@ export interface ValidateResult {
|
|
|
104
104
|
* the `array` variant is recursive -- each element is itself an `EvalResult`,
|
|
105
105
|
* so a 2-D array result is an array of `array` rows whose elements are scalar
|
|
106
106
|
* `EvalResult`s. This mirrors how `truecalc-core` represents array values
|
|
107
|
-
* internally (1-D arrays are flat, 2-D arrays nest row sub-arrays)
|
|
108
|
-
* the recursive shape `truecalc-mcp` already emits.
|
|
107
|
+
* internally (1-D arrays are flat, 2-D arrays nest row sub-arrays).
|
|
109
108
|
*
|
|
110
109
|
* # Surface shape (npm `@truecalc/core` >= 0.7.0)
|
|
111
110
|
*
|
package/truecalc_wasm_bg.wasm
CHANGED
|
Binary file
|
package/truecalc_wasm_bun.d.ts
CHANGED
|
@@ -104,8 +104,7 @@ export interface ValidateResult {
|
|
|
104
104
|
* the `array` variant is recursive -- each element is itself an `EvalResult`,
|
|
105
105
|
* so a 2-D array result is an array of `array` rows whose elements are scalar
|
|
106
106
|
* `EvalResult`s. This mirrors how `truecalc-core` represents array values
|
|
107
|
-
* internally (1-D arrays are flat, 2-D arrays nest row sub-arrays)
|
|
108
|
-
* the recursive shape `truecalc-mcp` already emits.
|
|
107
|
+
* internally (1-D arrays are flat, 2-D arrays nest row sub-arrays).
|
|
109
108
|
*
|
|
110
109
|
* # Surface shape (npm `@truecalc/core` >= 0.7.0)
|
|
111
110
|
*
|