SyntaxFix
Write A Post
Hire A Developer
Questions
Note: The following only works for the next line of code, and only due to a coincidence.
With Lodash,
require('lodash'); _.isArray([]); // true
No var _ = require('lodash') since Lodash mysteriously sets this value globally when required.
var _ = require('lodash')