mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Adjust spacing in template string expressions.
This commit is contained in:
@@ -22,12 +22,12 @@ function baseToString(value) {
|
||||
}
|
||||
if (Array.isArray(value)) {
|
||||
// Recursively convert values (susceptible to call stack limits).
|
||||
return `${ value.map(baseToString) }`
|
||||
return `${value.map(baseToString)}`
|
||||
}
|
||||
if (isSymbol(value)) {
|
||||
return symbolToString ? symbolToString.call(value) : ''
|
||||
}
|
||||
const result = `${ value }`
|
||||
const result = `${value}`
|
||||
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user