Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 235 Bytes

redundant-undefined.md

File metadata and controls

15 lines (10 loc) · 235 Bytes

redundant-undefined

Avoid explicitly specifying undefined as a type for a parameter which is already optional.

Bad:

function f(s?: string | undefined): void {}

Good:

function f(s?: string): void {}