Skip to content

Commit 8df3355

Browse files
Update README to include 'bignumber' function
Added 'bignumber' function to the README with example.
1 parent f5b6112 commit 8df3355

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ expr.evaluate('leafCount(parse("{a: 22/7, b: 10^(1/2)}"))');
544544
| `clamp` | Clamp value to range | `clamp(15, 0, 10)` | `10` |
545545
| `sin` | Sine (radians) | `sin(pi/2)` | `1` |
546546
| `cos` | Cosine (radians) | `cos(pi)` | `-1` |
547-
| `lsolve` | Solve linear system | `lsolve([-2,3;2,1], [11,9])` | matrix JSON |
548547
| `rationalize` | Rationalize expression | `rationalize("1/x + 1/(x+1)")` | `(2x + 1)/(x^2 + x)` |
548+
| `bignumber` | Create arbitrary-precision number | `bignumber("0.1")` | `"0.1"` |
549549

550550
> **Full reference**: See the [searchable function table](https://code-hemu.github.io/exprify/functions.html) for all ~130 built-in functions.
551551

0 commit comments

Comments
 (0)