1.1.0 • Published 6 years ago

@lucadv/pickme v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
6 years ago

Overview

A module that, given a list of elements, randomly pick up one and return it. The list must contain elements of type number, string or boolean. It can contain duplicated elements and elements of different types.

Usage

const Pickme = require('@lucadv/pickme');
const picked = new Pickme(['a', 'b', 'c']).pickOne(); // will be one of a, b or c