From 9dbd665d05bd3999e40b2d3fa17de238f34c6eac Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 31 Mar 2016 23:24:00 -0700 Subject: [PATCH] Space nit in `_.toNumber`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index da9313865..6584f5491 100644 --- a/lodash.js +++ b/lodash.js @@ -11367,7 +11367,7 @@ value = isObject(other) ? (other + '') : other; } if (typeof value != 'string') { - return value === 0 ? value : +value; + return value === 0 ? value : +value; } value = value.replace(reTrim, ''); var isBinary = reIsBinary.test(value);