luckio
v1.0.1
Published
A little library for lucky chance picking
Readme
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)();