I had a pull request feedback below, just wondering which way is the correct way to import lodash?
You\'d better do import has from \'lodash/has\'.. F
import has from 'lodash/has'; is better because lodash holds all it's functions in a single file, so rather than import the whole 'lodash' library at 100k, it's better to just import lodash's has function which is maybe 2k.
import has from 'lodash/has';
has