Skip to content

initialing/parse-condition-string

Repository files navigation

parse-condition-string

A package about parse condition string to js condition

how to use

transfer the conditions string like (a || b) && c, the variables of the string is the keys of the object like below

let obj = {
    a: true,
    b: false,
    c: false
}

to real javaScript conditions.

import package

const condParse = require("parse-condition-string"); // commonjs
import condParse from "parse-condition-string"; // esmodule
import condParse from "parse-condition-string"; // typescript

use

condParse("(a || b) && c", obj);
// false

About

A package about parse condition string to js condition

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published