Bump to v3.6.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:49:07 -08:00
parent 707fe171fc
commit 9724afd7a6
193 changed files with 2191 additions and 1764 deletions

View File

@@ -1,7 +1,4 @@
define(['./lang/isNative', './internal/root'], function(isNative, root) {
/** Used to detect functions containing a `this` reference. */
var reThis = /\bthis\b/;
define(['./internal/root'], function(root) {
/** Used for native method references. */
var objectProto = Object.prototype;
@@ -31,7 +28,7 @@ define(['./lang/isNative', './internal/root'], function(isNative, root) {
* @memberOf _.support
* @type boolean
*/
support.funcDecomp = !isNative(root.WinRTError) && reThis.test(function() { return this; });
support.funcDecomp = /\bthis\b/.test(function() { return this; });
/**
* Detect if `Function#name` is supported (all but IE).