Uniswap / v3-sdk

🛠 An SDK for building applications on top of Uniswap V3
MIT License
544 stars 416 forks source link

Allergic to semi-colons? #181

Closed NoUJoe closed 11 months ago

NoUJoe commented 1 year ago

Couldn't help but notice that there's only 65 semi colons in the whole source. No semi colons at the end of lines, opting for leading semi colons in some places:

;[this.token0, this.token1] = tokenA.sortsBefore(tokenB) ? [tokenA, tokenB] : [tokenB, tokenA]

Why? Like.... why? Just like.... why?

NoUJoe commented 11 months ago

Turns out it's some awful design choice