sindresorhus/eslint-plugin-unicorn

Rule proposal: `prefer-number-is-integer`

Chiusa

#1460 aperta il 1 ago 2021

 (3 commenti) (4 reazioni) (0 assegnatari)JavaScript (468 fork)user submission
help wantednew rule

Metriche repository

Star
 (5022 stelle)
Metriche merge PR
 (Merge medio 4h 30m) (26 PR mergiate in 30 g)

Descrizione

Use Number.isInteger. Not really sure if there's any benefit to using it. Maybe it's more performant. Makes the code marginally cleaner.

Fail

number % 1 === 0;

Pass

Number.isInteger(number);

Guida contributor