Skip to content

v4.0.0

Latest

Choose a tag to compare

@github-actions github-actions released this 13 Jun 22:19
fd34f4a

4.0.0 (2026-06-13)

⚠ BREAKING CHANGES

  • now ESM-only and requires Node.js >= 22.12. The CommonJS build is dropped. import format from 'format-duration' is unchanged. CommonJS consumers on Node 22.12+ can still require() it but must change const format = require('format-duration') to const { formatDuration } = require('format-duration') (or .default).

Code Refactoring

  • rewrite in TypeScript, ESM-only (77d8bb0)