1.0.7 • Published 2 years ago

mathparsa-latexifier-calculator-lib v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

mathparsa

Math in

Latex and result out

How use?

import { parse, latexify, calculate, AST } from 'mathparsa-latexifier-calculator-lib';
const math = '1 / a';
const ast: AST = parse(math);
const latex: string = latexify(ast);
const result: number = calculate(ast); // not implemented
const { parse, latexify, calculate } = require('mathparsa-latexifier-calculator-lib');

const math = '1 / a';
const ast = parse(math);
const latex = latexify(ast);
const result = calculate(ast); // not implemented

Sources

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago