mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
Minor cleanup in saucelabs.js.
This commit is contained in:
@@ -66,10 +66,7 @@
|
||||
var browser = platform[1],
|
||||
version = +platform[2];
|
||||
|
||||
if (browser == 'firefox') {
|
||||
return version >= 4;
|
||||
}
|
||||
return true
|
||||
return browser != 'firefox' || version >= 4;
|
||||
});
|
||||
}
|
||||
// platforms for mobile and modern builds
|
||||
@@ -83,7 +80,7 @@
|
||||
case 'internet explorer': return version >= 9;
|
||||
case 'safari': return version >= (isMobile ? 5 : 6);
|
||||
}
|
||||
return true
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user