aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/utils.coffee7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/utils.coffee b/lib/utils.coffee
index c8a02328..b7f8731a 100644
--- a/lib/utils.coffee
+++ b/lib/utils.coffee
@@ -145,13 +145,6 @@ Function::curry = ->
Array.copy = (array) -> Array.prototype.slice.call(array, 0)
-Array::rotate = (count) ->
- if @length
- count = count % @length
- count += @length while count < 0
- Array::push.apply(this, @splice(0, count))
- this
-
String::startsWith = (str) -> @indexOf(str) == 0
globalRoot = window ? global