diff options
| author | Stephen Blott | 2016-01-28 16:59:46 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2016-01-28 16:59:46 +0000 | 
| commit | 4c6c3210639bcf23f33b419963d930743062811a (patch) | |
| tree | e0eb80e68a5f9f3b256678f73abcdd5b1eb28041 /lib/utils.coffee | |
| parent | 75463367b337bd600e9c8a9e4d56ca06da341527 (diff) | |
| download | vimium-4c6c3210639bcf23f33b419963d930743062811a.tar.bz2 | |
Simplify hint-string generation; simplification.
Diffstat (limited to 'lib/utils.coffee')
| -rw-r--r-- | lib/utils.coffee | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/lib/utils.coffee b/lib/utils.coffee index b69b926b..c255102e 100644 --- a/lib/utils.coffee +++ b/lib/utils.coffee @@ -281,6 +281,7 @@ Array.copy = (array) -> Array.prototype.slice.call(array, 0)  String::startsWith = (str) -> @indexOf(str) == 0  String::ltrim = -> @replace /^\s+/, ""  String::rtrim = -> @replace /\s+$/, "" +String::reverse = -> @split("").reverse().join ""  globalRoot = window ? global  globalRoot.extend = (hash1, hash2) -> | 
