Releases: aryamohanan/square-calc
Releases · aryamohanan/square-calc
Release list
Release v3.3.1
This release improves developer experience (DX) for projects utilizing Node.js's native require(esm) feature.
🛠 What's New
Seamless CommonJS Interoperability
You can now import the package using standard CommonJS require() without needing to manually destructure or append .default to the function!
Before
const calculateSquare = require('your-package').default;Now
const calculateSquare = require('your-package');