Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Compile time support for runtime logic operations in Typescript
Currently these functions are binary (excluding b.not(boolean)
), meaning they only take two inputs.
We'll be looking to extends these to take multiple booleans as arguments for the following functions:
A functional programming API that supports piping is a great feature. We'll be adding overloads to support these soon.
If a function requries 2 or more arguments, the first will be partially applied and returns a function that takes the rest.
// yarn
yarn add boolean-ts
// npm
npm install boolean-ts
import * as b from "boolean-ts";
const value1 = b.not(true); //type is false
const value2 = b.and(true, true); // type is true
const value3 = b.and(true, false); // type is false
const value4 = b.and(false, false); // type is false
const value4 = b.xnor(true, false); // type is true
Based off information from this website on basic logic gates, we'll document some useful concepts here.
A truth table is a table that visually demonstrate how the logic gate should work. We'll focus on binary functions.
There is a truth table for each operation: and
, or
, nand
, nor
, xor
, xnor
.
Outputs true when all inputs are true.
A | B | Result |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Outputs true when any input is true.
A | B | Result |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Opposite of And
. Ouputs true when both outputs are not true.
A | B | Result |
---|---|---|
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
Opposite of Or
. Outputs true when both inputs are false
A | B | Result |
---|---|---|
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 0 |
Ouputs true when inputs are mismatched true/false.
A | B | Result |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
Ouputs true when both inputs are true or both inputs are false.
A | B | Result |
---|---|---|
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
FAQs
Compile time support for runtime logic operations in Typescript
We found that boolean-ts 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.