sindresorhus/eslint-plugin-unicorn
Rule proposal: `prefer-string-repeat`
Chiusa
#1774 aperta il 30 mar 2022
help wantednew rule
Metriche repository
- Star
- (5022 stelle)
- Metriche merge PR
- (Merge medio 4h 30m) (26 PR mergiate in 30 g)
Descrizione
Description
https://github.com/eslint/eslint/pull/15731#issuecomment-1082586113
Fail
Array.from({length: 10 + 1}).join('*')
Array.from({length: 10}).fill('*').join('')
Array.from({length: 10}, () => '*').join('')
Pass
'*'.repeat(10)
String(foo).repeat(10)