mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 15:37:59 +01:00
remove unnecessary parentheses from typeof args
This commit is contained in:
@@ -554,7 +554,7 @@ vimperator.Completion = function () // {{{
|
||||
// items must be an array of strings
|
||||
match: function (items, filter, case_sensitive)
|
||||
{
|
||||
if (typeof(filter) != "string" || !items)
|
||||
if (typeof filter != "string" || !items)
|
||||
return false;
|
||||
|
||||
var items_str = items.join(" ");
|
||||
|
||||
Reference in New Issue
Block a user