Kiwi Team random lunch grouping tool.
- Node v4 (ES6 feature)
$ npm install
const config = require('./config');
let Random = require('path/to/random');
let random = new Random(config.members, config.hooks);
// grouping all the members
random.group();
// grouping all the members apart from several members
random.except(['foo', 'bar']).group();