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

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 main
(foo ?? baz) || baz;