1.0.1 • Published 8 years ago

luckio v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

NPM version

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)();