Complete semicolons removal (6cb3460).

This commit is contained in:
Michał Lipiński
2017-02-16 18:28:58 +01:00
parent 86e8437514
commit 53dba0a211

View File

@@ -29,7 +29,7 @@ const symbolToString = symbolProto ? symbolProto.toString : undefined
*/
function toString(value) {
if (value == null) {
return '';
return ''
}
// Exit early for strings to avoid a performance hit in some environments.
if (typeof value == 'string') {