Remove isKeysFast guard.

Former-commit-id: 38a63ed31d652fd198ebf30dbb0f1546160c30c1
This commit is contained in:
John-David Dalton
2013-01-05 10:14:15 -08:00
parent e2c2a37221
commit 766d67d80d
7 changed files with 61 additions and 67 deletions

View File

@@ -115,11 +115,10 @@
stringClass = '[object String]';
/** Detect various environments */
var isIeOpera = !!window.attachEvent,
isV8 = nativeBind && !/\n|true/.test(nativeBind + isIeOpera);
var isIeOpera = !!window.attachEvent;
/* Detect if `Function#bind` exists and is inferred to be fast (all but V8) */
var isBindFast = nativeBind && !isV8;
var isBindFast = nativeBind && /\n|true/.test(nativeBind + isIeOpera);
/**
* Detect if `Array#shift` and `Array#splice` augment array-like objects