An open API service indexing awesome lists of open source software.

https://github.com/timobechtel/maybe

Can't decide between true or false? You don't have to.
https://github.com/timobechtel/maybe

javascript maybe useful

Last synced: about 1 month ago
JSON representation

Can't decide between true or false? You don't have to.

Awesome Lists containing this project

README

          

# 🤷‍♂️ maybe.js

Can't decide whether to use `true` or `false`? Fear no more! Use maybe.js.

With maybe.js you can do this:

```js
const flagA = true;
const flagB = false;
const flagC = maybe;

console.log(flagC); // => logs true or false, everyone likes surprises!
```