Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@types/math-expression-evaluator
Advanced tools
TypeScript definitions for math-expression-evaluator
npm install --save @types/math-expression-evaluator
This package contains type definitions for math-expression-evaluator (https://github.com/bugwheels94/math-expression-evaluator).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/math-expression-evaluator.
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;
These definitions were written by Adam Zerella.
FAQs
TypeScript definitions for math-expression-evaluator
The npm package @types/math-expression-evaluator receives a total of 19,870 weekly downloads. As such, @types/math-expression-evaluator popularity was classified as popular.
We found that @types/math-expression-evaluator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.