diff options
| author | Stephen Blott | 2015-05-08 16:47:24 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-05-08 16:47:24 +0100 | 
| commit | 82d25b5df76c8526d4ccb5352c0905cc28371199 (patch) | |
| tree | b6f695701b4f0801e2022a3699454d5e60e73711 /lib/utils.coffee | |
| parent | 5e6fa4ccfc103750b84df02a35f42a6acef78fa1 (diff) | |
| download | vimium-82d25b5df76c8526d4ccb5352c0905cc28371199.tar.bz2 | |
Search completion; search keyword on SPACE.
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 1c24a40f..033fdd2b 100644 --- a/lib/utils.coffee +++ b/lib/utils.coffee @@ -201,6 +201,7 @@ Function::curry = ->  Array.copy = (array) -> Array.prototype.slice.call(array, 0)  String::startsWith = (str) -> @indexOf(str) == 0 +String::ltrim = () -> @replace /^\s+/, ""  globalRoot = window ? global  globalRoot.extend = (hash1, hash2) -> | 
