We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
We have a different behaviour by replacing lodash with es-toolkit/compat.
lodash
es-toolkit/compat
Here is a code sample to reproduce the issue
import { assignIn } from 'es-toolkit/compat' import { assignIn as assignInLodash } from 'lodash' const values = [{ workId: undefined }, { exerciseId: '1' }] const assignInLodashResult = assignInLodash({}, ...values) const assignInEsToolKitResult = assignIn({}, ...values) console.dir({ assignInLodashResult, assignInEsToolKitResult, })
The output is
{ assignInLodashResult: { workId: undefined, exerciseId: '1' }, assignInEsToolKitResult: { exerciseId: '1' } }
I use es-tookit 1.32 and lodash 4.17.11
es-tookit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
We have a different behaviour by replacing
lodash
withes-toolkit/compat
.Here is a code sample to reproduce the issue
The output is
I use
es-tookit
1.32 andlodash
4.17.11The text was updated successfully, but these errors were encountered: