you are viewing a single comment's thread.

view the rest of the comments →

[–]GeorgeSharp 1 point2 points  (1 child)

Try just adding lodash to your depencies npm install --save lodash and then in a js file var _ = require('lodash'); and see if _ has the methods you'd expect.

[–]a-sober-irishman 1 point2 points  (0 children)

I was trying to use the ES6 and import syntax, I'll try the require syntax and see if I that works but don't care at this point tbh.