You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import _ from 'lodash';
class test {
constructor() {
this._ = _; // lodash is replaced with 'undefined' here
}
someMethod() {
const value = this._.get({a:1}, 'a'); // error thrown here because this._ is undefined
}
}
Issue occurs in this situation