Remove dead code from stringToArray.

This commit is contained in:
John-David Dalton
2015-12-27 23:10:59 -06:00
parent 89b9f46ad8
commit 2396932846

View File

@@ -1203,7 +1203,7 @@
* @returns {Array} Returns the converted array. * @returns {Array} Returns the converted array.
*/ */
function stringToArray(string) { function stringToArray(string) {
return string ? string.match(reComplexSymbol) : []; return string.match(reComplexSymbol);
} }
/** /**