3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
dbot/snippets.js

4 lines
99 B
JavaScript
Raw Normal View History

2011-08-22 20:43:16 +02:00
Array.prototype.random = function() {
return this[Math.floor((Math.random()*this.length))];
};