lodash/lodash

`lodash/fp` pollutes native/global `Array.isArray` with `convert` property

Open

#6,105 opened on Feb 6, 2026

View on GitHub
 (6 comments) (1 reaction) (0 assignees)JavaScript (7,163 forks)batch import
bughelp wantedlodash/fp

Repository metrics

Stars
 (61,227 stars)
PR merge metrics
 (Avg merge 209d 9h) (5 merged PRs in 30d)

Description

Repro:

console.log(Array.isArray.convert)
//=> undefined

require('lodash/fp')

console.log(Array.isArray.convert)
//=> [Function (anonymous)]

Contributor guide