A default export has no name at the boundary, so the importing file invents one. Rename the thing being exported and every import keeps working under the old…
Unpacking a few fields out of an options object is three or four lines of near-identical assignment at the top of every function. Destructuring does it in the…
Walking every day between two dates is usually a while loop with a manual increment and an off-by-one at one end. DatePeriod is an iterator over a start,…
A class named Utils, Helpers or Common has no definition, so nothing can be excluded from it. It grows monotonically, it is imported everywhere, and it ends up…
PSR-0 mapped the entire namespace onto the path, so AppReportBuilder had to live at src/App/Report/Builder.php — the vendor and package name repeated inside a directory that was already…