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
convert Clip class to use named parameters (9b7d356)
convert Cue class to use named parameters (4cdde3b)
convert to ESM-only package and expand exports (3302958)
BREAKING CHANGES
The Clip class constructor now requires named parameters
instead of positional parameters. Change new Clip(id, captureStart, captureEnd, duration, offset)
to new Clip({ id, captureStart, captureEnd, duration, offset }).
The Cue class constructor now requires named parameters
instead of positional parameters. Change new Cue(startTime, endTime, samples)
to new Cue({ startTime, endTime, samples }).
No longer provides CommonJS exports. ESM imports only.