From 35d5704e3f192f91fd497ee2e447ca25bb807c1b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 29 May 2012 10:14:40 -0400 Subject: [PATCH] Change the default value of `_.templateSettings.variable` to `obj` for Underscore.js compatibility. [closes #16] Former-commit-id: da91e5c881e6b3f9e2108cc231e57c023884b251 --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c6ad50bca..c3cb7540b 100644 --- a/lodash.js +++ b/lodash.js @@ -176,7 +176,7 @@ * @memberOf _.templateSettings * @type String */ - 'variable': 'object' + 'variable': 'obj' }; /*--------------------------------------------------------------------------*/