@@ -31,7 +31,7 @@ import isIterateeCall from './_isIterateeCall.js';
* // => [4, '*', '*', 10]
*/
functionfill(array,value,start,end){
varlength=array?array.length:0;
varlength=array==null?0:array.length;
if(!length){
return[];
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.