buggood first issue
Repository metrics
- Stars
- (2,948 stars)
- PR merge metrics
- (Avg merge 103d 2h) (4 merged PRs in 30d)
Description
Most of the methods take an options object and then mutate by setting default values, like here. This is not a good practice, since the methods don't own those objects and are introducing unexpected side effects. Use Object.assign instead to make copies of the options.