aboutsummaryrefslogtreecommitdiffstats
path: root/lib/utils.coffee
diff options
context:
space:
mode:
authormrmr19932016-02-16 13:48:20 +0000
committermrmr19932016-02-16 13:48:20 +0000
commit56fed2ac6663d99ca03023f3ffa313c51de5fe32 (patch)
tree53279879b1549a597b71de93530d0feb8ab6f044 /lib/utils.coffee
parentceada9cdf8cb97c35b4871553e3c8b642c4806ef (diff)
downloadvimium-56fed2ac6663d99ca03023f3ffa313c51de5fe32.tar.bz2
Use `for own ... of` instead of `for ... of`
Diffstat (limited to 'lib/utils.coffee')
-rw-r--r--lib/utils.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.coffee b/lib/utils.coffee
index 50d8c7dd..9969811a 100644
--- a/lib/utils.coffee
+++ b/lib/utils.coffee
@@ -285,7 +285,7 @@ String::reverse = -> @split("").reverse().join ""
globalRoot = window ? global
globalRoot.extend = (hash1, hash2) ->
- for key of hash2
+ for own key of hash2
hash1[key] = hash2[key]
hash1