You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).