Repository URL to install this package:
module.exports = { repeater : function(count, func){ for(var i = 0; i < count; i++){ func(); } } };