Closed tomaszkepa closed 6 years ago
Hi guys, when I using lodash-webpack-plugin v0.11.5 and lodash v4.17.10 with this config options:
lodash-webpack-plugin
lodash
{ shorthands: true, collections: true, cloning: true, flattening: true, paths: true, coercions: true, currying: true, placeholders: true }
I have problem with isEqual when I compare Set
isEqual
Set
_.isEqual(new Set('a'), new Set('a')) -> false
_.isEqual(new Set('a'), new Set('a'))
Without lodash-webpack-plugin all is fine.
Hi @tomaszkepa!
Try enabling exotics.
exotics
Hi guys, when I using
lodash-webpack-plugin
v0.11.5 andlodash
v4.17.10 with this config options:{ shorthands: true, collections: true, cloning: true, flattening: true, paths: true, coercions: true, currying: true, placeholders: true }
I have problem with
isEqual
when I compareSet
_.isEqual(new Set('a'), new Set('a'))
-> falseWithout
lodash-webpack-plugin
all is fine.