diff --git a/source/migration-helper.ts b/source/migration-helper.ts index d4574c3..fb9df3a 100644 --- a/source/migration-helper.ts +++ b/source/migration-helper.ts @@ -19,7 +19,7 @@ export type Migration = { * tested, while the second argument will be the version passed into * {@link migrate}. * - * If left undefined, `a < b` will be used. This works for {@link Date dates}, + * If left undefined, `a <= b` will be used. This works for {@link Date dates}, * {@link Number numbers} and {@link String strings}. So if you want to use a * different type for versioning you should create your own function. */ @@ -35,7 +35,7 @@ export async function migrate( data: unknown, version: V, migrations: Array>, - skip: SkipMigrationFn = (a, b) => a < b, + skip: SkipMigrationFn = (a, b) => a <= b, ): Promise { let migratedData = data;