Minor format nit for baseCastPath. [ci skip]

This commit is contained in:
John-David Dalton
2016-03-05 08:38:34 -08:00
parent a6c88a173b
commit d38000bc33

View File

@@ -2339,9 +2339,7 @@
* @returns {Array} Returns the cast property path array.
*/
function baseCastPath(value) {
return isArray(value)
? value
: stringToPath(value);
return isArray(value) ? value : stringToPath(value);
}
/**