diff options
| author | mrmr1993 | 2016-02-16 13:48:20 +0000 | 
|---|---|---|
| committer | mrmr1993 | 2016-02-16 13:48:20 +0000 | 
| commit | 56fed2ac6663d99ca03023f3ffa313c51de5fe32 (patch) | |
| tree | 53279879b1549a597b71de93530d0feb8ab6f044 /lib/utils.coffee | |
| parent | ceada9cdf8cb97c35b4871553e3c8b642c4806ef (diff) | |
| download | vimium-56fed2ac6663d99ca03023f3ffa313c51de5fe32.tar.bz2 | |
Use `for own ... of` instead of `for ... of`
Diffstat (limited to 'lib/utils.coffee')
| -rw-r--r-- | lib/utils.coffee | 2 | 
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 | 
