@@ -20,7 +20,7 @@ var nativeJoin = arrayProto.join;
* // => 'a~b~c'
*/
function join(array, separator) {
return array ? nativeJoin.call(array, separator) : '';
return array == null ? '' : nativeJoin.call(array, separator);
}
export default join;
The note is not visible to the blocked user.