文件名称:logician:作为 npm 模块的简单逻辑解析器
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-23 12:29:52
JavaScript
逻辑学家 作为 npm 模块的简单逻辑解析器 用法 npm install logician var solve = require('logician') // solve basic logical operations solve("true or false") // true solve("true and false") // false // solve numeric operations solve("1 + 1 == 2") // true solve("1 + 1 == 1 or true") // true solve("1 != 2 and 2 != 1") // true solve("4 < 5>= 7") // true 数值运算: + - * / == != > < >= <= 逻辑运算: or and is isnt not 同义词:
【文件预览】:
logician-master
----src()
--------logician.js(5KB)
----gulpfile.js(564B)
----LICENSE(1KB)
----test()
--------main.js(2KB)
----README.md(1KB)
----dist()
--------logician.js(5KB)
----.gitignore(12B)
----package.json(742B)