Use x even more in support definition.

This commit is contained in:
jdalton
2015-04-05 13:20:48 -05:00
parent 1b53b5f9eb
commit 8a7a099073

View File

@@ -995,7 +995,7 @@
(function(x) { (function(x) {
var Ctor = function() { this.x = x; }, var Ctor = function() { this.x = x; },
object = { '0': !x, 'length': 1 }, object = { '0': x, 'length': x },
props = []; props = [];
Ctor.prototype = { 'valueOf': x, 'y': x }; Ctor.prototype = { 'valueOf': x, 'y': x };
@@ -1143,7 +1143,7 @@
} catch(e) { } catch(e) {
support.nonEnumArgs = true; support.nonEnumArgs = true;
} }
}(0, 0)); }(1, 0));
/** /**
* By default, the template delimiters used by lodash are like those in * By default, the template delimiters used by lodash are like those in