This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Description
import _ from 'lodash';
const someObj = {
fn: (onClick=_.noop) {
/* do something */
onClick();
}
}
When running this in certain environments (specifically jest with --coverage flag), this code sample result in TypeError: Cannot read property 'noop' of undefined
This started happening when I added this plugin