Bump to v4.16.4.

This commit is contained in:
John-David Dalton
2016-10-05 19:32:45 -07:00
parent d9fd2bdf9c
commit 6778141728
17 changed files with 103 additions and 69 deletions

View File

@@ -1,4 +1,6 @@
import Symbol from './_Symbol.js';
import arrayMap from './_arrayMap.js';
import isArray from './isArray.js';
import isSymbol from './isSymbol.js';
/** Used as references for various `Number` constants. */
@@ -21,6 +23,10 @@ function baseToString(value) {
if (typeof value == 'string') {
return value;
}
if (isArray(value)) {
// Recursively convert values (susceptible to call stack limits).
return arrayMap(value, baseToString) + '';
}
if (isSymbol(value)) {
return symbolToString ? symbolToString.call(value) : '';
}