From d56de091f6fbd10a68a56ba0230bb8c041684057 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 16 Jan 2014 20:18:21 -0800 Subject: [PATCH] Missed a BIND_FLAG use in `baseCreateCallback`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 8f2db2d87..97756a557 100644 --- a/lodash.js +++ b/lodash.js @@ -1337,7 +1337,7 @@ } } // exit early if there are no `this` references or `func` is bound - if (bindData === false || (bindData !== true && bindData[1] & 1)) { + if (bindData === false || (bindData !== true && bindData[1] & BIND_FLAG)) { return func; } switch (argCount) {