all files / lib/nodeo/ Selection.js

75% Statements 3/4
100% Branches 0/0
0% Functions 0/1
75% Lines 3/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                                 
// Selection mechanisms plus common code if needed
/*jslint node: true */
'use strict';
// * @license GPL v3
// * @package nodeo
// * @author J. J. Merelo <jjmerelo@gmail.com>
 
 
// To avoid uncomprehensible radix complaint at charAt
/*jshint -W065 */
/*jshint smarttabs:true */
 
module.exports = Selection;
Selection.Tournament = require("./Selection/Tournament");
 
// Dummy function
function Selection() {
    return;
}