My js module is like this:
/* `querystring` is outside of the func `foo` below. */
const querystring = require('querystring');
let foo = (params) => (dispatch, getState) => {
// In Chrome Dev Tools I set a breakpoint here inside `foo` func.
// And I want to reference `querystring` here in Chrome Dev Tools
// And Chrome Dev Tools says it is not available.
}
Here is a picture. Why does it happen? How to effectively reference a variable that is in a Closure
in Chrome Dev Tools?
BTW, Closure.querystring
isn't available either.