Socket
Socket
Sign inDemoInstall

@types/math-expression-evaluator

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/math-expression-evaluator

TypeScript definitions for math-expression-evaluator


Version published
Weekly downloads
26K
increased by11.55%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/math-expression-evaluator

Summary

This package contains type definitions for math-expression-evaluator (https://github.com/bugwheels94/math-expression-evaluator).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/math-expression-evaluator.

index.d.ts

interface Token {
    token: string;
    type: number;
    value?: string | ((a: number, b?: number) => number) | undefined;
    show: string;
    preced?: number | undefined;
    numberOfArguments?: number;
}

type TokenName =
    | "FUNCTION_WITH_ONE_ARG"
    | "NUMBER"
    | "BINARY_OPERATOR_HIGH_PRECENDENCE"
    | "CONSTANT"
    | "OPENING_PARENTHESIS"
    | "CLOSING_PARENTHESIS"
    | "DECIMAL"
    | "POSTFIX_FUNCTION_WITH_ONE_ARG"
    | "FUNCTION_WITH_N_ARGS"
    | "BINARY_OPERATOR_LOW_PRECENDENCE"
    | "BINARY_OPERATOR_PERMUTATION"
    | "COMMA"
    | "EVALUATED_FUNCTION"
    | "EVALUATED_FUNCTION_PARAMETER"
    | "SPACE";

type TokenTypes = {
    [K in TokenName]: number;
};

declare class Mexp {
    static lex(inp: string, tokens?: Token[]): Mexp;
    formulaEval(): Mexp;
    toPostfix(): Mexp;
    postfixEval(pair?: object): number | string;
    static tokenTypes: TokenTypes;
    static eval(exp: string, tokens?: Token[], pair?: object): string;
    static eval(exp: string, mexp?: object): string;
    static addToken(tokens: Token[]): void;
}

export = Mexp;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: none

Credits

These definitions were written by Adam Zerella.

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc