Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.09 KB

TEMPLATE.md

File metadata and controls

39 lines (24 loc) · 1.09 KB

Title (#XXXX by @user)

// Input
(foo ?? baz) || baz;

// Prettier stable
foo ?? baz || baz;

// Prettier master
(foo ?? baz) || baz;