Reputation: 44
I've tried to found on Lodash website and on the web informations about time and memory complexity of Lodash functions, especially get, but I didn't manage to get anything. Is anybody know something about it ?
Thanks !
NB: Since lodash is open source, I can do it myself if necessary ^^
Upvotes: 1
Views: 3370
Reputation: 2919
A jsperf example can be helpful for your use case. This link is a possible one here which tests the performance on browsers for the native vs the underscrore function and lodash methods.
Here are other methods test
And as for the memory consumtion you can always use chrome tools to capture heat map and heap memory deumps .
Upvotes: 0