summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/vendor/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/js/vendor/util.js')
-rw-r--r--StoneIsland/www/js/vendor/util.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/StoneIsland/www/js/vendor/util.js b/StoneIsland/www/js/vendor/util.js
index 8a58a84c..0e48ce5a 100644
--- a/StoneIsland/www/js/vendor/util.js
+++ b/StoneIsland/www/js/vendor/util.js
@@ -41,6 +41,7 @@ function rand(n){ return (Math.random()*n) }
function randint(n){ return rand(n)|0 }
function randrange(a,b){ return a + rand(b-a) }
function choice(a){ return a[randint(a.length)] }
+function noop(){}
function range(m,n,s){
var a = []