Irrelon / booleanmap

Maps boolean values to binary string sequences and maps those to chosen values

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Boolean Map

Tiny helper to map boolean values to a string.

Example

const result = booleanMap({
	"11": "1st",
	"01": "2nd",
	"10": "3rd",
	"00": "4th"
}, true, false);

console.log(result); // Outputs "3rd"

Install

npm i @irrelon/booleanmap

About

Maps boolean values to binary string sequences and maps those to chosen values


Languages

Language:JavaScript 100.0%