I'm developing a project in React and I'm importing functions from lodash and Immutable.js.
import isEqual from 'lodash/isEqual
const {List, Set, Map, is} = require('immutable')
When I'm debugging my code these functions work in the script but if I stop at a breakpoint and attempt to use them in Firefox's debugging console, I get a ReferenceError telling me they are not defined.
Do I need to explicitly import them in the console? Or am I importing them incorrectly?