1.0.1 • Published 10 years ago
luckio v1.0.1
Luckio
Get lucky in a certain percentage of your tries.
Example
If you are lucky it returns true, if not false.
On the first call you set the lucky chance, on each consequent call
it checks if the current pick is a lucky one.
var luckio = require("luckio");
// 1% lucky chance & memoizing the first call
var isLucky = luckio(1);
isLucky();
// 50% lucky chance & no memoization
luckio(50)();