0.0.4 • Published 10 years ago

outcast v0.0.4

Weekly downloads
7
License
-
Repository
github
Last release
10 years ago

outcast

=======

A fun module that helps you randomly remove people from a game. Do you have a tie? Use outcast to break the tie.

Installation

npm install outcast
var outcast = require('outcast');

Usage

You can remove as many players from the game at a time as you want. (Defaults to one)

Remove One

var gamePlayers = ['John', 'Bill', 'Sarah', 'Mike', 'Rebecka'];
OR
var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited

outcast.remove(gamePlayers);
Returns

'John', 'Sarah', 'Mike', 'Rebecka' // Removes a random value

Remove Many

var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited

outcast.remove(gamePlayers, 3);
Returns

'Bill', 'Mike' // Removes 3 random value

Just pick a winner already...

var gamePlayers = 'John Bill Sarah Mike Rebecka'; // Space delimited

outcast.winner(gamePlayers);
Returns

'Sarah' // Pick a random value

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago