From 53dba0a2117148a32e244c8c9e11979b4c843dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Thu, 16 Feb 2017 18:28:58 +0100 Subject: [PATCH] Complete semicolons removal (6cb3460). --- toString.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toString.js b/toString.js index 9391de287..7f8695c54 100644 --- a/toString.js +++ b/toString.js @@ -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') {