prayanshu

Results 3 issues of prayanshu

Issue: Using Object(name) as a check to see if name is an object is not reliable since it could fail for various falsy or primitive values. Instead, use a more...

Location: Multiple functions like baseArity, flatSpread, wrapImmutable many other function ``` return func.apply(undefined, arguments); ``` Issue: Using undefined as the context for apply can lead to errors if func is...

Issue: Using a while loop to clone arrays is less efficient than using modern methods like slice. For large arrays, this could become a performance bottleneck. there is scope of...