4chan-x/src/General/Cheats.coffee
2013-12-24 15:45:00 -07:00

11 lines
281 B
CoffeeScript

# I am bad at JavaScript and if you reuse this, so are you.
Array::indexOf = (val) ->
i = @length
while i--
return i if @[i] is val
return i
# Update CoffeeScript's reference to [].indexOf
# Reserved keywords are ignored in embedded javascript.
`__indexOf = [].indexOf`