you-dont-need/You-Dont-Need-Lodash-Underscore
Voir sur GitHubAdd more suggestions for _.first
Open
#312 ouverte le 2 mai 2021
enhancementhelp wanted
Métriques du dépôt
- Stars
- (18 379 stars)
- Métriques de merge PR
- (Aucune PR mergée en 30 j)
Description
Currently, the suggestion we get for _.first might not be relevant in all cases. Array.prototype.slice() returns an array. But _.first from lodash returns a non-array value. So this line should be something like this I guess:
"alternative": "Array.prototype.slice() or arr[0]"
Also, I think we should add more aliases here. For example _.head should be prevented when _.first is prevented, because they're basically the same.