From 4ab073164beab2bf690d7fffc7773e7b76d8e07e Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Tue, 27 Feb 2024 20:57:27 +0100 Subject: [PATCH] feat!: high precision random number generator (#2357) --- docs/guide/randomizer.md | 17 + docs/guide/upgrading_v9/2357.md | 72 +++ src/faker.ts | 2 +- src/index.ts | 4 + src/internal/mersenne.ts | 27 +- src/simple-faker.ts | 6 +- .../__snapshots__/mersenne.spec.ts.snap | 12 + test/internal/mersenne.spec.ts | 8 +- .../__snapshots__/airline.spec.ts.snap | 82 +-- test/modules/__snapshots__/color.spec.ts.snap | 48 +- .../__snapshots__/commerce.spec.ts.snap | 36 +- .../__snapshots__/company.spec.ts.snap | 18 +- .../__snapshots__/database.spec.ts.snap | 6 +- .../__snapshots__/datatype.spec.ts.snap | 12 +- test/modules/__snapshots__/date.spec.ts.snap | 412 ++++++++-------- .../__snapshots__/finance.spec.ts.snap | 214 ++++---- test/modules/__snapshots__/food.spec.ts.snap | 12 +- test/modules/__snapshots__/git.spec.ts.snap | 120 ++--- .../modules/__snapshots__/hacker.spec.ts.snap | 6 +- .../__snapshots__/helpers.spec.ts.snap | 344 ++++++------- test/modules/__snapshots__/image.spec.ts.snap | 194 ++++---- .../__snapshots__/internet.spec.ts.snap | 370 +++++++------- .../__snapshots__/location.spec.ts.snap | 174 +++---- test/modules/__snapshots__/lorem.spec.ts.snap | 466 +++++++++--------- .../modules/__snapshots__/number.spec.ts.snap | 66 +-- .../modules/__snapshots__/person.spec.ts.snap | 50 +- test/modules/__snapshots__/phone.spec.ts.snap | 18 +- .../modules/__snapshots__/random.spec.ts.snap | 42 +- .../modules/__snapshots__/string.spec.ts.snap | 372 +++++++------- .../modules/__snapshots__/system.spec.ts.snap | 176 +++---- .../__snapshots__/vehicle.spec.ts.snap | 18 +- test/modules/__snapshots__/word.spec.ts.snap | 62 +-- test/modules/date.spec.ts | 9 +- test/modules/helpers.spec.ts | 17 +- test/simple-faker.spec.ts | 8 +- 35 files changed, 1821 insertions(+), 1679 deletions(-) create mode 100644 docs/guide/upgrading_v9/2357.md diff --git a/docs/guide/randomizer.md b/docs/guide/randomizer.md index e03152a74ad..16df1209789 100644 --- a/docs/guide/randomizer.md +++ b/docs/guide/randomizer.md @@ -12,6 +12,23 @@ There are two connected use cases we have considered where this might be needed: 1. Re-Use of the same `Randomizer` within multiple `Faker` instances. 2. The use of a random number generator from a third party library. +## Built-In `Randomizer`s + +Faker ships with two variations + +```ts +import { + generateMersenne32Randomizer, // Default prior to v9 + generateMersenne53Randomizer, // Default since v9 +} from '@faker-js/faker'; + +const randomizer = generateMersenne53Randomizer(); +``` + +The 32bit `Randomizer` is faster, but the 53bit `Randomizer` generates better random values (with significantly fewer duplicates). + +But you can also implement your own by implementing the [related interface](/api/randomizer.html). + ## Using `Randomizer`s A `Randomizer` has to be set during construction of the instance: diff --git a/docs/guide/upgrading_v9/2357.md b/docs/guide/upgrading_v9/2357.md new file mode 100644 index 00000000000..28a530c3fe7 --- /dev/null +++ b/docs/guide/upgrading_v9/2357.md @@ -0,0 +1,72 @@ +# Use High Precision RNG by default + +TLDR: Many Faker methods will return a different result in v9 compared to v8 for the same seed. + +In v9 we switch from a 32 bit random value to a 53 bit random value. +We don't change the underlying algorithm much, but we now consume two seed values each step instead of one. +This affects generated values in two ways: + +- In large lists or long numbers the values are spread more evenly. + This also reduces the number of duplicates it generates. + For `faker.number.int()` this reduces the number of duplicates from `1 / 10_000` to less than `1 / 8_000_000`. +- If you start with the same initial seed to generate a value, you might see some changes in the results you get. + This is because we're now working with a higher precision, which affects how numbers are rounded off. + As a result, the methods we use might produce slightly different outcomes. + And since we are now using two seed values each time subsequent results appear to skip a value each time. + +```ts +import { + SimpleFaker, + generateMersenne32Randomizer, + generateMersenne53Randomizer, +} from '@faker-js/faker'; + +// < v9 default +const f32 = new SimpleFaker({ randomizer: generateMersenne32Randomizer() }); +f32.seed(123); +const r32 = f32.helpers.multiple(() => f32.number.int(10), { count: 10 }); +// > v9 default +const f53 = new SimpleFaker({ randomizer: generateMersenne53Randomizer() }); +f53.seed(123); +const r53 = f53.helpers.multiple(() => f53.number.int(10), { count: 5 }); + +diff(r32, r53); +//[ +// 7, +// 7, // [!code --] +// 3, +// 4, // [!code --] +// 2, +// 7, // [!code --] +// 6, +// 7, // [!code --] +// 7, +// 5, // [!code --] +//] +``` + +## Adoption + +If you don't have any seeded tests and just want some random values, then you don't have to change anything. + +If you have seeded tests, you have to update most test snapshots or similar comparisons to new values. + +If you are using vitest, you can do that using `pnpm vitest run -u`. + +## Keeping the old behavior + +You can keep the old behavior, if you create your own `Faker` instance +and pass a `Randomizer` instance from the `generateMersenne32Randomizer()` function to it. + +```ts{8} +import { + Faker, + generateMersenne32Randomizer, // < v9 default + generateMersenne53Randomizer, // > v9 default +} from '@faker-js/faker'; + +const faker = new Faker({ + randomizer: generateMersenne32Randomizer(), + ... +}); +``` diff --git a/src/faker.ts b/src/faker.ts index c4f65187d7b..5f5e14ce392 100644 --- a/src/faker.ts +++ b/src/faker.ts @@ -152,7 +152,7 @@ export class Faker extends SimpleFaker { * Specify this only if you want to use it to achieve a specific goal, * such as sharing the same random generator with other instances/tools. * - * @default generateMersenne32Randomizer() + * @default generateMersenne53Randomizer() */ randomizer?: Randomizer; }) { diff --git a/src/index.ts b/src/index.ts index 4fb24bc489a..33ec9e2e04d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -72,6 +72,10 @@ export type { export { FakerError } from './errors/faker-error'; export { Faker } from './faker'; export type { FakerOptions } from './faker'; +export { + generateMersenne32Randomizer, + generateMersenne53Randomizer, +} from './internal/mersenne'; export * from './locale'; export { fakerEN as faker } from './locale'; export * from './locales'; diff --git a/src/internal/mersenne.ts b/src/internal/mersenne.ts index 2372e364d78..d01b5ee9b0e 100644 --- a/src/internal/mersenne.ts +++ b/src/internal/mersenne.ts @@ -328,9 +328,7 @@ export class MersenneTwister19937 { /** * Generates a MersenneTwister19937 randomizer with 32 bits of precision. - * This is the default randomizer used by Faker. - * - * @internal + * This is the default randomizer used by faker prior to v9.0. */ export function generateMersenne32Randomizer(): Randomizer { const twister = new MersenneTwister19937(); @@ -350,3 +348,26 @@ export function generateMersenne32Randomizer(): Randomizer { }, }; } + +/** + * Generates a MersenneTwister19937 randomizer with 53 bits of precision. + * This is the default randomizer used by faker starting with v9.0. + */ +export function generateMersenne53Randomizer(): Randomizer { + const twister = new MersenneTwister19937(); + + twister.initGenrand(Math.ceil(Math.random() * Number.MAX_SAFE_INTEGER)); + + return { + next(): number { + return twister.genrandRes53(); + }, + seed(seed: number | number[]): void { + if (typeof seed === 'number') { + twister.initGenrand(seed); + } else if (Array.isArray(seed)) { + twister.initByArray(seed, seed.length); + } + }, + }; +} diff --git a/src/simple-faker.ts b/src/simple-faker.ts index 3993392deab..e775cbc7b5d 100644 --- a/src/simple-faker.ts +++ b/src/simple-faker.ts @@ -1,4 +1,4 @@ -import { generateMersenne32Randomizer } from './internal/mersenne'; +import { generateMersenne53Randomizer } from './internal/mersenne'; import { DatatypeModule } from './modules/datatype'; import { SimpleDateModule } from './modules/date'; import { SimpleHelpersModule } from './modules/helpers'; @@ -117,12 +117,12 @@ export class SimpleFaker { * Specify this only if you want to use it to achieve a specific goal, * such as sharing the same random generator with other instances/tools. * - * @default generateMersenne32Randomizer() + * @default generateMersenne53Randomizer() */ randomizer?: Randomizer; } = {} ) { - const { randomizer = generateMersenne32Randomizer() } = options; + const { randomizer = generateMersenne53Randomizer() } = options; this._randomizer = randomizer; } diff --git a/test/internal/__snapshots__/mersenne.spec.ts.snap b/test/internal/__snapshots__/mersenne.spec.ts.snap index c55b1152308..c045e2e7bfd 100644 --- a/test/internal/__snapshots__/mersenne.spec.ts.snap +++ b/test/internal/__snapshots__/mersenne.spec.ts.snap @@ -11,3 +11,15 @@ exports[`generateMersenne32Randomizer() > seed: 42 > should return deterministic exports[`generateMersenne32Randomizer() > seed: 1211 > should return deterministic value for next() 1`] = `0.9285201537422836`; exports[`generateMersenne32Randomizer() > seed: 1337 > should return deterministic value for next() 1`] = `0.2620246761944145`; + +exports[`generateMersenne53Randomizer() > seed: [42,1,2] > should return deterministic value for next() 1`] = `0.8562037477947296`; + +exports[`generateMersenne53Randomizer() > seed: [1211,1,2] > should return deterministic value for next() 1`] = `0.8916433279801969`; + +exports[`generateMersenne53Randomizer() > seed: [1337,1,2] > should return deterministic value for next() 1`] = `0.17990487224060836`; + +exports[`generateMersenne53Randomizer() > seed: 42 > should return deterministic value for next() 1`] = `0.3745401188473625`; + +exports[`generateMersenne53Randomizer() > seed: 1211 > should return deterministic value for next() 1`] = `0.9285201539025842`; + +exports[`generateMersenne53Randomizer() > seed: 1337 > should return deterministic value for next() 1`] = `0.2620246750155817`; diff --git a/test/internal/mersenne.spec.ts b/test/internal/mersenne.spec.ts index d72a9c3f9b6..f0e48bd0f78 100644 --- a/test/internal/mersenne.spec.ts +++ b/test/internal/mersenne.spec.ts @@ -2,6 +2,7 @@ import { beforeAll, beforeEach, describe, expect, it } from 'vitest'; import { MersenneTwister19937, generateMersenne32Randomizer, + generateMersenne53Randomizer, } from '../../src/internal/mersenne'; import type { Randomizer } from '../../src/randomizer'; import { seededRuns } from '../support/seeded-runs'; @@ -84,8 +85,11 @@ describe('MersenneTwister19937', () => { }); }); -describe('generateMersenne32Randomizer()', () => { - const randomizer: Randomizer = generateMersenne32Randomizer(); +describe.each([ + ['generateMersenne32Randomizer()', generateMersenne32Randomizer], + ['generateMersenne53Randomizer()', generateMersenne53Randomizer], +])('%s', (_, factory) => { + const randomizer: Randomizer = factory(); it('should return a result matching the interface', () => { expect(randomizer).toBeDefined(); diff --git a/test/modules/__snapshots__/airline.spec.ts.snap b/test/modules/__snapshots__/airline.spec.ts.snap index 0615a83999f..f304193aa8f 100644 --- a/test/modules/__snapshots__/airline.spec.ts.snap +++ b/test/modules/__snapshots__/airline.spec.ts.snap @@ -23,33 +23,33 @@ exports[`airline > 42 > airport 1`] = ` } `; -exports[`airline > 42 > flightNumber > flightNumber addLeadingZeros 1`] = `"0089"`; +exports[`airline > 42 > flightNumber > flightNumber addLeadingZeros 1`] = `"0097"`; -exports[`airline > 42 > flightNumber > flightNumber length 2 to 4 1`] = `"891"`; +exports[`airline > 42 > flightNumber > flightNumber length 2 to 4 1`] = `"975"`; -exports[`airline > 42 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"0891"`; +exports[`airline > 42 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"0975"`; -exports[`airline > 42 > flightNumber > flightNumber length 3 1`] = `"479"`; +exports[`airline > 42 > flightNumber > flightNumber length 3 1`] = `"497"`; -exports[`airline > 42 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0479"`; +exports[`airline > 42 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0497"`; -exports[`airline > 42 > flightNumber > noArgs 1`] = `"89"`; +exports[`airline > 42 > flightNumber > noArgs 1`] = `"97"`; -exports[`airline > 42 > recordLocator > allowNumerics 1`] = `"DTY7RT"`; +exports[`airline > 42 > recordLocator > allowNumerics 1`] = `"DYRM66"`; -exports[`airline > 42 > recordLocator > allowVisuallySimilarCharacters 1`] = `"JUYETU"`; +exports[`airline > 42 > recordLocator > allowVisuallySimilarCharacters 1`] = `"JYTPEE"`; -exports[`airline > 42 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"DSY6QS"`; +exports[`airline > 42 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"DYQL55"`; -exports[`airline > 42 > recordLocator > noArgs 1`] = `"JVYETU"`; +exports[`airline > 42 > recordLocator > noArgs 1`] = `"JYTQDD"`; -exports[`airline > 42 > seat > aircraftType narrowbody 1`] = `"14E"`; +exports[`airline > 42 > seat > aircraftType narrowbody 1`] = `"14F"`; exports[`airline > 42 > seat > aircraftType regional 1`] = `"8D"`; -exports[`airline > 42 > seat > aircraftType widebody 1`] = `"23H"`; +exports[`airline > 42 > seat > aircraftType widebody 1`] = `"23K"`; -exports[`airline > 42 > seat > noArgs 1`] = `"14E"`; +exports[`airline > 42 > seat > noArgs 1`] = `"14F"`; exports[`airline > 1211 > aircraftType 1`] = `"widebody"`; @@ -74,33 +74,33 @@ exports[`airline > 1211 > airport 1`] = ` } `; -exports[`airline > 1211 > flightNumber > flightNumber addLeadingZeros 1`] = `"5872"`; +exports[`airline > 1211 > flightNumber > flightNumber addLeadingZeros 1`] = `"9296"`; -exports[`airline > 1211 > flightNumber > flightNumber length 2 to 4 1`] = `"5872"`; +exports[`airline > 1211 > flightNumber > flightNumber length 2 to 4 1`] = `"9296"`; -exports[`airline > 1211 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"5872"`; +exports[`airline > 1211 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"9296"`; -exports[`airline > 1211 > flightNumber > flightNumber length 3 1`] = `"948"`; +exports[`airline > 1211 > flightNumber > flightNumber length 3 1`] = `"982"`; -exports[`airline > 1211 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0948"`; +exports[`airline > 1211 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0982"`; -exports[`airline > 1211 > flightNumber > noArgs 1`] = `"5872"`; +exports[`airline > 1211 > flightNumber > noArgs 1`] = `"9296"`; -exports[`airline > 1211 > recordLocator > allowNumerics 1`] = `"XGWT86"`; +exports[`airline > 1211 > recordLocator > allowNumerics 1`] = `"XW8ZPQ"`; -exports[`airline > 1211 > recordLocator > allowVisuallySimilarCharacters 1`] = `"YLXUFD"`; +exports[`airline > 1211 > recordLocator > allowVisuallySimilarCharacters 1`] = `"YXFZRR"`; -exports[`airline > 1211 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"XGWS84"`; +exports[`airline > 1211 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"XW8ZOO"`; -exports[`airline > 1211 > recordLocator > noArgs 1`] = `"YMXUFC"`; +exports[`airline > 1211 > recordLocator > noArgs 1`] = `"YXFZSS"`; -exports[`airline > 1211 > seat > aircraftType narrowbody 1`] = `"33C"`; +exports[`airline > 1211 > seat > aircraftType narrowbody 1`] = `"33F"`; -exports[`airline > 1211 > seat > aircraftType regional 1`] = `"19B"`; +exports[`airline > 1211 > seat > aircraftType regional 1`] = `"19D"`; -exports[`airline > 1211 > seat > aircraftType widebody 1`] = `"56E"`; +exports[`airline > 1211 > seat > aircraftType widebody 1`] = `"56J"`; -exports[`airline > 1211 > seat > noArgs 1`] = `"33C"`; +exports[`airline > 1211 > seat > noArgs 1`] = `"33F"`; exports[`airline > 1337 > aircraftType 1`] = `"narrowbody"`; @@ -125,30 +125,30 @@ exports[`airline > 1337 > airport 1`] = ` } `; -exports[`airline > 1337 > flightNumber > flightNumber addLeadingZeros 1`] = `"0061"`; +exports[`airline > 1337 > flightNumber > flightNumber addLeadingZeros 1`] = `"0022"`; -exports[`airline > 1337 > flightNumber > flightNumber length 2 to 4 1`] = `"61"`; +exports[`airline > 1337 > flightNumber > flightNumber length 2 to 4 1`] = `"22"`; -exports[`airline > 1337 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"0061"`; +exports[`airline > 1337 > flightNumber > flightNumber length 2 to 4 and addLeadingZeros 1`] = `"0022"`; -exports[`airline > 1337 > flightNumber > flightNumber length 3 1`] = `"351"`; +exports[`airline > 1337 > flightNumber > flightNumber length 3 1`] = `"312"`; -exports[`airline > 1337 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0351"`; +exports[`airline > 1337 > flightNumber > flightNumber length 3 and addLeadingZeros 1`] = `"0312"`; -exports[`airline > 1337 > flightNumber > noArgs 1`] = `"61"`; +exports[`airline > 1337 > flightNumber > noArgs 1`] = `"22"`; -exports[`airline > 1337 > recordLocator > allowNumerics 1`] = `"AK68AJ"`; +exports[`airline > 1337 > recordLocator > allowNumerics 1`] = `"A6AGBJ"`; -exports[`airline > 1337 > recordLocator > allowVisuallySimilarCharacters 1`] = `"GOEFHO"`; +exports[`airline > 1337 > recordLocator > allowVisuallySimilarCharacters 1`] = `"GEHLIN"`; -exports[`airline > 1337 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"9K57AJ"`; +exports[`airline > 1337 > recordLocator > both allowNumerics and allowVisuallySimilarCharacters 1`] = `"95AGBI"`; -exports[`airline > 1337 > recordLocator > noArgs 1`] = `"GPDEGP"`; +exports[`airline > 1337 > recordLocator > noArgs 1`] = `"GDGMHN"`; -exports[`airline > 1337 > seat > aircraftType narrowbody 1`] = `"10D"`; +exports[`airline > 1337 > seat > aircraftType narrowbody 1`] = `"10A"`; -exports[`airline > 1337 > seat > aircraftType regional 1`] = `"6C"`; +exports[`airline > 1337 > seat > aircraftType regional 1`] = `"6A"`; -exports[`airline > 1337 > seat > aircraftType widebody 1`] = `"16F"`; +exports[`airline > 1337 > seat > aircraftType widebody 1`] = `"16B"`; -exports[`airline > 1337 > seat > noArgs 1`] = `"10D"`; +exports[`airline > 1337 > seat > noArgs 1`] = `"10A"`; diff --git a/test/modules/__snapshots__/color.spec.ts.snap b/test/modules/__snapshots__/color.spec.ts.snap index a39ce0f3558..1e9a4dc0a4f 100644 --- a/test/modules/__snapshots__/color.spec.ts.snap +++ b/test/modules/__snapshots__/color.spec.ts.snap @@ -3,17 +3,17 @@ exports[`color > 42 > cmyk 1`] = ` [ 0.37, - 0.8, 0.96, - 0.18, + 0.73, + 0.6, ] `; exports[`color > 42 > colorByCSSColorSpace 1`] = ` [ 0.3745, - 0.7966, 0.9508, + 0.732, ] `; @@ -24,8 +24,8 @@ exports[`color > 42 > cssSupportedSpace 1`] = `"display-p3"`; exports[`color > 42 > hsl 1`] = ` [ 135, - 0.8, 0.96, + 0.73, ] `; @@ -34,45 +34,45 @@ exports[`color > 42 > human 1`] = `"grey"`; exports[`color > 42 > hwb 1`] = ` [ 135, - 0.8, 0.96, + 0.73, ] `; exports[`color > 42 > lab 1`] = ` [ 0.37454, - 59.3086, 90.1429, + 46.3988, ] `; exports[`color > 42 > lch 1`] = ` [ 0.37454, - 183.2, 218.7, + 168.4, ] `; -exports[`color > 42 > rgb 1`] = `"#8be4ab"`; +exports[`color > 42 > rgb 1`] = `"#8ead33"`; exports[`color > 42 > space 1`] = `"Rec. 709"`; exports[`color > 1211 > cmyk 1`] = ` [ 0.93, - 0.46, 0.9, - 0.78, + 0.22, + 1, ] `; exports[`color > 1211 > colorByCSSColorSpace 1`] = ` [ 0.9286, - 0.459, 0.8935, + 0.2255, ] `; @@ -83,8 +83,8 @@ exports[`color > 1211 > cssSupportedSpace 1`] = `"prophoto-rgb"`; exports[`color > 1211 > hsl 1`] = ` [ 335, - 0.46, 0.9, + 0.22, ] `; @@ -93,45 +93,45 @@ exports[`color > 1211 > human 1`] = `"azure"`; exports[`color > 1211 > hwb 1`] = ` [ 335, - 0.46, 0.9, + 0.22, ] `; exports[`color > 1211 > lab 1`] = ` [ 0.928521, - -8.197, 78.6944, + -54.8859, ] `; exports[`color > 1211 > lch 1`] = ` [ 0.928521, - 105.6, 205.5, + 51.9, ] `; -exports[`color > 1211 > rgb 1`] = `"#eadb42"`; +exports[`color > 1211 > rgb 1`] = `"#ed4fef"`; exports[`color > 1211 > space 1`] = `"LMS"`; exports[`color > 1337 > cmyk 1`] = ` [ 0.26, - 0.56, 0.16, - 0.21, + 0.28, + 0.46, ] `; exports[`color > 1337 > colorByCSSColorSpace 1`] = ` [ 0.262, - 0.5605, 0.1586, + 0.2781, ] `; @@ -142,8 +142,8 @@ exports[`color > 1337 > cssSupportedSpace 1`] = `"display-p3"`; exports[`color > 1337 > hsl 1`] = ` [ 94, - 0.56, 0.16, + 0.28, ] `; @@ -152,27 +152,27 @@ exports[`color > 1337 > human 1`] = `"black"`; exports[`color > 1337 > hwb 1`] = ` [ 94, - 0.56, 0.16, + 0.28, ] `; exports[`color > 1337 > lab 1`] = ` [ 0.262024, - 12.106, -68.2632, + -44.3747, ] `; exports[`color > 1337 > lch 1`] = ` [ 0.262024, - 128.9, 36.5, + 63.9, ] `; -exports[`color > 1337 > rgb 1`] = `"#5c346b"`; +exports[`color > 1337 > rgb 1`] = `"#536a7b"`; exports[`color > 1337 > space 1`] = `"ProPhoto RGB Color Space"`; diff --git a/test/modules/__snapshots__/commerce.spec.ts.snap b/test/modules/__snapshots__/commerce.spec.ts.snap index 00b8f08e58a..a494172a5e8 100644 --- a/test/modules/__snapshots__/commerce.spec.ts.snap +++ b/test/modules/__snapshots__/commerce.spec.ts.snap @@ -2,15 +2,15 @@ exports[`commerce > 42 > department 1`] = `"Tools"`; -exports[`commerce > 42 > isbn > noArgs 1`] = `"978-0-7917-7551-6"`; +exports[`commerce > 42 > isbn > noArgs 1`] = `"978-0-9751108-6-7"`; -exports[`commerce > 42 > isbn > with space separators 1`] = `"978 0 7917 7551 6"`; +exports[`commerce > 42 > isbn > with space separators 1`] = `"978 0 9751108 6 7"`; -exports[`commerce > 42 > isbn > with variant 10 1`] = `"0-7917-7551-8"`; +exports[`commerce > 42 > isbn > with variant 10 1`] = `"0-9751108-6-1"`; -exports[`commerce > 42 > isbn > with variant 10 and space separators 1`] = `"0 7917 7551 8"`; +exports[`commerce > 42 > isbn > with variant 10 and space separators 1`] = `"0 9751108 6 1"`; -exports[`commerce > 42 > isbn > with variant 13 1`] = `"978-0-7917-7551-6"`; +exports[`commerce > 42 > isbn > with variant 13 1`] = `"978-0-9751108-6-7"`; exports[`commerce > 42 > price > noArgs 1`] = `"375.00"`; @@ -42,19 +42,19 @@ exports[`commerce > 42 > productDescription 1`] = `"The Apollotech B340 is an af exports[`commerce > 42 > productMaterial 1`] = `"Plastic"`; -exports[`commerce > 42 > productName 1`] = `"Fantastic Soft Sausages"`; +exports[`commerce > 42 > productName 1`] = `"Fantastic Frozen Fish"`; exports[`commerce > 1211 > department 1`] = `"Automotive"`; -exports[`commerce > 1211 > isbn > noArgs 1`] = `"978-1-4872-1906-2"`; +exports[`commerce > 1211 > isbn > noArgs 1`] = `"978-1-82966-736-0"`; -exports[`commerce > 1211 > isbn > with space separators 1`] = `"978 1 4872 1906 2"`; +exports[`commerce > 1211 > isbn > with space separators 1`] = `"978 1 82966 736 0"`; -exports[`commerce > 1211 > isbn > with variant 10 1`] = `"1-4872-1906-7"`; +exports[`commerce > 1211 > isbn > with variant 10 1`] = `"1-82966-736-X"`; -exports[`commerce > 1211 > isbn > with variant 10 and space separators 1`] = `"1 4872 1906 7"`; +exports[`commerce > 1211 > isbn > with variant 10 and space separators 1`] = `"1 82966 736 X"`; -exports[`commerce > 1211 > isbn > with variant 13 1`] = `"978-1-4872-1906-2"`; +exports[`commerce > 1211 > isbn > with variant 13 1`] = `"978-1-82966-736-0"`; exports[`commerce > 1211 > price > noArgs 1`] = `"929.00"`; @@ -86,19 +86,19 @@ exports[`commerce > 1211 > productDescription 1`] = `"Andy shoes are designed to exports[`commerce > 1211 > productMaterial 1`] = `"Frozen"`; -exports[`commerce > 1211 > productName 1`] = `"Unbranded Cotton Salad"`; +exports[`commerce > 1211 > productName 1`] = `"Unbranded Fresh Bike"`; exports[`commerce > 1337 > department 1`] = `"Computers"`; -exports[`commerce > 1337 > isbn > noArgs 1`] = `"978-0-512-25403-0"`; +exports[`commerce > 1337 > isbn > noArgs 1`] = `"978-0-12-435297-1"`; -exports[`commerce > 1337 > isbn > with space separators 1`] = `"978 0 512 25403 0"`; +exports[`commerce > 1337 > isbn > with space separators 1`] = `"978 0 12 435297 1"`; -exports[`commerce > 1337 > isbn > with variant 10 1`] = `"0-512-25403-6"`; +exports[`commerce > 1337 > isbn > with variant 10 1`] = `"0-12-435297-9"`; -exports[`commerce > 1337 > isbn > with variant 10 and space separators 1`] = `"0 512 25403 6"`; +exports[`commerce > 1337 > isbn > with variant 10 and space separators 1`] = `"0 12 435297 9"`; -exports[`commerce > 1337 > isbn > with variant 13 1`] = `"978-0-512-25403-0"`; +exports[`commerce > 1337 > isbn > with variant 13 1`] = `"978-0-12-435297-1"`; exports[`commerce > 1337 > price > noArgs 1`] = `"263.00"`; @@ -130,4 +130,4 @@ exports[`commerce > 1337 > productDescription 1`] = `"The slim & simple Maple Ga exports[`commerce > 1337 > productMaterial 1`] = `"Concrete"`; -exports[`commerce > 1337 > productName 1`] = `"Incredible Granite Keyboard"`; +exports[`commerce > 1337 > productName 1`] = `"Incredible Bronze Ball"`; diff --git a/test/modules/__snapshots__/company.spec.ts.snap b/test/modules/__snapshots__/company.spec.ts.snap index b65e2bd48eb..a199424cb4c 100644 --- a/test/modules/__snapshots__/company.spec.ts.snap +++ b/test/modules/__snapshots__/company.spec.ts.snap @@ -4,11 +4,11 @@ exports[`company > 42 > buzzAdjective 1`] = `"dynamic"`; exports[`company > 42 > buzzNoun 1`] = `"technologies"`; -exports[`company > 42 > buzzPhrase 1`] = `"seize impactful methodologies"`; +exports[`company > 42 > buzzPhrase 1`] = `"seize collaborative schemas"`; exports[`company > 42 > buzzVerb 1`] = `"seize"`; -exports[`company > 42 > catchPhrase 1`] = `"Implemented responsive throughput"`; +exports[`company > 42 > catchPhrase 1`] = `"Implemented web-enabled policy"`; exports[`company > 42 > catchPhraseAdjective 1`] = `"Implemented"`; @@ -18,7 +18,7 @@ exports[`company > 42 > catchPhraseNoun 1`] = `"framework"`; exports[`company > 42 > companySuffix 1`] = `"and Sons"`; -exports[`company > 42 > name 1`] = `"Schinner - Wiegand"`; +exports[`company > 42 > name 1`] = `"Wiegand - Reynolds"`; exports[`company > 42 > suffixes 1`] = ` [ @@ -33,11 +33,11 @@ exports[`company > 1211 > buzzAdjective 1`] = `"plug-and-play"`; exports[`company > 1211 > buzzNoun 1`] = `"methodologies"`; -exports[`company > 1211 > buzzPhrase 1`] = `"cultivate bleeding-edge experiences"`; +exports[`company > 1211 > buzzPhrase 1`] = `"cultivate customized communities"`; exports[`company > 1211 > buzzVerb 1`] = `"cultivate"`; -exports[`company > 1211 > catchPhrase 1`] = `"Up-sized high-level success"`; +exports[`company > 1211 > catchPhrase 1`] = `"Up-sized tertiary contingency"`; exports[`company > 1211 > catchPhraseAdjective 1`] = `"Up-sized"`; @@ -47,7 +47,7 @@ exports[`company > 1211 > catchPhraseNoun 1`] = `"system engine"`; exports[`company > 1211 > companySuffix 1`] = `"Group"`; -exports[`company > 1211 > name 1`] = `"Koelpin, Trantow and Satterfield"`; +exports[`company > 1211 > name 1`] = `"Trantow, Fahey and Zieme"`; exports[`company > 1211 > suffixes 1`] = ` [ @@ -62,11 +62,11 @@ exports[`company > 1337 > buzzAdjective 1`] = `"global"`; exports[`company > 1337 > buzzNoun 1`] = `"ROI"`; -exports[`company > 1337 > buzzPhrase 1`] = `"incentivize efficient initiatives"`; +exports[`company > 1337 > buzzPhrase 1`] = `"incentivize strategic solutions"`; exports[`company > 1337 > buzzVerb 1`] = `"incentivize"`; -exports[`company > 1337 > catchPhrase 1`] = `"Expanded leading edge capacity"`; +exports[`company > 1337 > catchPhrase 1`] = `"Expanded clear-thinking definition"`; exports[`company > 1337 > catchPhraseAdjective 1`] = `"Expanded"`; @@ -76,7 +76,7 @@ exports[`company > 1337 > catchPhraseNoun 1`] = `"data-warehouse"`; exports[`company > 1337 > companySuffix 1`] = `"and Sons"`; -exports[`company > 1337 > name 1`] = `"MacGyver Inc"`; +exports[`company > 1337 > name 1`] = `"Cronin and Sons"`; exports[`company > 1337 > suffixes 1`] = ` [ diff --git a/test/modules/__snapshots__/database.spec.ts.snap b/test/modules/__snapshots__/database.spec.ts.snap index f49fc90e580..8b3d9490938 100644 --- a/test/modules/__snapshots__/database.spec.ts.snap +++ b/test/modules/__snapshots__/database.spec.ts.snap @@ -6,7 +6,7 @@ exports[`database > 42 > column 1`] = `"token"`; exports[`database > 42 > engine 1`] = `"MEMORY"`; -exports[`database > 42 > mongodbObjectId 1`] = `"8be4abdd39321ad7d3fe01ff"`; +exports[`database > 42 > mongodbObjectId 1`] = `"8ead331ddf0fc4446b96d368"`; exports[`database > 42 > type 1`] = `"smallint"`; @@ -16,7 +16,7 @@ exports[`database > 1211 > column 1`] = `"createdAt"`; exports[`database > 1211 > engine 1`] = `"ARCHIVE"`; -exports[`database > 1211 > mongodbObjectId 1`] = `"eadb42f0e3f4a973fab0aeef"`; +exports[`database > 1211 > mongodbObjectId 1`] = `"ed4fefa7fbaec9dc4c48fa8e"`; exports[`database > 1211 > type 1`] = `"geometry"`; @@ -26,6 +26,6 @@ exports[`database > 1337 > column 1`] = `"email"`; exports[`database > 1337 > engine 1`] = `"MyISAM"`; -exports[`database > 1337 > mongodbObjectId 1`] = `"5c346ba075bd57f5a62b82d7"`; +exports[`database > 1337 > mongodbObjectId 1`] = `"536a7b5fa28d2f9bb79ca46e"`; exports[`database > 1337 > type 1`] = `"time"`; diff --git a/test/modules/__snapshots__/datatype.spec.ts.snap b/test/modules/__snapshots__/datatype.spec.ts.snap index 9d6707ba18c..9cce8dc0645 100644 --- a/test/modules/__snapshots__/datatype.spec.ts.snap +++ b/test/modules/__snapshots__/datatype.spec.ts.snap @@ -6,9 +6,9 @@ exports[`datatype > 42 > boolean > noArgs 2`] = `false`; exports[`datatype > 42 > boolean > noArgs 3`] = `false`; -exports[`datatype > 42 > boolean > noArgs 4`] = `true`; +exports[`datatype > 42 > boolean > noArgs 4`] = `false`; -exports[`datatype > 42 > boolean > noArgs 5`] = `false`; +exports[`datatype > 42 > boolean > noArgs 5`] = `true`; exports[`datatype > 42 > boolean > with probability 1`] = `true`; @@ -16,13 +16,13 @@ exports[`datatype > 42 > boolean > with probability option 1`] = `false`; exports[`datatype > 1211 > boolean > noArgs 1`] = `false`; -exports[`datatype > 1211 > boolean > noArgs 2`] = `true`; +exports[`datatype > 1211 > boolean > noArgs 2`] = `false`; -exports[`datatype > 1211 > boolean > noArgs 3`] = `false`; +exports[`datatype > 1211 > boolean > noArgs 3`] = `true`; exports[`datatype > 1211 > boolean > noArgs 4`] = `false`; -exports[`datatype > 1211 > boolean > noArgs 5`] = `true`; +exports[`datatype > 1211 > boolean > noArgs 5`] = `false`; exports[`datatype > 1211 > boolean > with probability 1`] = `false`; @@ -30,7 +30,7 @@ exports[`datatype > 1211 > boolean > with probability option 1`] = `false`; exports[`datatype > 1337 > boolean > noArgs 1`] = `true`; -exports[`datatype > 1337 > boolean > noArgs 2`] = `false`; +exports[`datatype > 1337 > boolean > noArgs 2`] = `true`; exports[`datatype > 1337 > boolean > noArgs 3`] = `true`; diff --git a/test/modules/__snapshots__/date.spec.ts.snap b/test/modules/__snapshots__/date.spec.ts.snap index 4ade2cc7301..1b28f47bd47 100644 --- a/test/modules/__snapshots__/date.spec.ts.snap +++ b/test/modules/__snapshots__/date.spec.ts.snap @@ -1,91 +1,91 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`date > 42 > anytime > with only Date refDate 1`] = `2020-11-22T03:05:49.801Z`; +exports[`date > 42 > anytime > with only Date refDate 1`] = `2020-11-22T03:05:50.087Z`; -exports[`date > 42 > anytime > with only number refDate 1`] = `2020-11-22T03:05:49.801Z`; +exports[`date > 42 > anytime > with only number refDate 1`] = `2020-11-22T03:05:50.087Z`; -exports[`date > 42 > anytime > with only string refDate 1`] = `2020-11-22T03:05:49.801Z`; +exports[`date > 42 > anytime > with only string refDate 1`] = `2020-11-22T03:05:50.087Z`; -exports[`date > 42 > between > with Date dates 1`] = `2021-03-15T19:30:57.091Z`; +exports[`date > 42 > between > with Date dates 1`] = `2021-03-15T19:30:57.115Z`; -exports[`date > 42 > between > with mixed dates 1`] = `2021-03-15T19:30:57.091Z`; +exports[`date > 42 > between > with mixed dates 1`] = `2021-03-15T19:30:57.115Z`; -exports[`date > 42 > between > with string dates 1`] = `2021-03-15T19:30:57.091Z`; +exports[`date > 42 > between > with string dates 1`] = `2021-03-15T19:30:57.115Z`; exports[`date > 42 > betweens > with Date dates 1`] = ` [ - 2021-03-15T19:30:57.091Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-15T19:30:57.115Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > 42 > betweens > with Date dates and count 1`] = ` [ - 2021-03-04T12:54:15.263Z, - 2021-03-15T19:30:57.091Z, - 2021-04-05T21:40:57.315Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-02T22:04:55.366Z, + 2021-03-15T19:30:57.115Z, + 2021-03-29T00:52:30.236Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > 42 > betweens > with Date dates and count range 1`] = ` [ - 2021-03-04T12:54:15.263Z, - 2021-04-05T21:40:57.315Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-02T22:04:55.366Z, + 2021-03-29T00:52:30.236Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > 42 > betweens > with mixed dates 1`] = ` [ - 2021-03-15T19:30:57.091Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-15T19:30:57.115Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > 42 > betweens > with string dates 1`] = ` [ - 2021-03-15T19:30:57.091Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-15T19:30:57.115Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > 42 > betweens > with string dates and count 1`] = ` [ - 2021-03-04T12:54:15.263Z, - 2021-03-15T19:30:57.091Z, - 2021-04-05T21:40:57.315Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-02T22:04:55.366Z, + 2021-03-15T19:30:57.115Z, + 2021-03-29T00:52:30.236Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; -exports[`date > 42 > birthdate > with age and refDate 1`] = `1980-07-07T19:06:53.022Z`; +exports[`date > 42 > birthdate > with age and refDate 1`] = `1980-07-07T19:06:53.165Z`; -exports[`date > 42 > birthdate > with age mode and refDate 1`] = `1963-09-27T06:10:33.792Z`; +exports[`date > 42 > birthdate > with age mode and refDate 1`] = `1963-09-27T06:10:42.813Z`; -exports[`date > 42 > birthdate > with age range and refDate 1`] = `1962-12-27T20:13:59.702Z`; +exports[`date > 42 > birthdate > with age range and refDate 1`] = `1962-12-27T20:14:08.437Z`; -exports[`date > 42 > birthdate > with only refDate 1`] = `1964-03-22T08:05:39.972Z`; +exports[`date > 42 > birthdate > with only refDate 1`] = `1964-03-22T08:05:48.849Z`; -exports[`date > 42 > birthdate > with year and refDate 1`] = `0020-07-07T19:06:53.022Z`; +exports[`date > 42 > birthdate > with year and refDate 1`] = `0020-07-07T19:06:53.165Z`; -exports[`date > 42 > birthdate > with year mode and refDate 1`] = `1964-03-22T08:05:39.972Z`; +exports[`date > 42 > birthdate > with year mode and refDate 1`] = `1964-03-22T08:05:48.849Z`; -exports[`date > 42 > birthdate > with year range and refDate 1`] = `0057-12-20T11:59:23.890Z`; +exports[`date > 42 > birthdate > with year range and refDate 1`] = `0057-12-20T11:59:38.353Z`; -exports[`date > 42 > future > with only Date refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > 42 > future > with only Date refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > 42 > future > with only number refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > 42 > future > with only number refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > 42 > future > with only string refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > 42 > future > with only string refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > 42 > future > with value 1`] = `2024-11-19T18:52:06.785Z`; +exports[`date > 42 > future > with value 1`] = `2024-11-19T18:52:08.216Z`; exports[`date > 42 > month > noArgs 1`] = `"May"`; @@ -95,29 +95,29 @@ exports[`date > 42 > month > with abbreviated = true and context = true 1`] = `" exports[`date > 42 > month > with context = true 1`] = `"May"`; -exports[`date > 42 > past > with only Date refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > 42 > past > with only Date refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > 42 > past > with only number refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > 42 > past > with only number refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > 42 > past > with only string refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > 42 > past > with only string refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > 42 > past > with value 1`] = `2017-05-26T15:26:24.637Z`; +exports[`date > 42 > past > with value 1`] = `2017-05-26T15:26:23.206Z`; -exports[`date > 42 > recent > with only Date refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > 42 > recent > with only Date refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > 42 > recent > with only number refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > 42 > recent > with only number refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > 42 > recent > with only string refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > 42 > recent > with only string refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > 42 > recent > with value 1`] = `2021-02-17T23:15:52.427Z`; +exports[`date > 42 > recent > with value 1`] = `2021-02-17T23:15:52.423Z`; -exports[`date > 42 > soon > with only Date refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > 42 > soon > with only Date refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > 42 > soon > with only number refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > 42 > soon > with only number refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > 42 > soon > with only string refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > 42 > soon > with only string refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > 42 > soon > with value 1`] = `2021-02-25T11:02:38.995Z`; +exports[`date > 42 > soon > with value 1`] = `2021-02-25T11:02:38.999Z`; exports[`date > 42 > weekday > noArgs 1`] = `"Tuesday"`; @@ -127,11 +127,11 @@ exports[`date > 42 > weekday > with abbreviated = true and context = true 1`] = exports[`date > 42 > weekday > with context = true 1`] = `"Tuesday"`; -exports[`date > 1211 > anytime > with only Date refDate 1`] = `2021-12-31T12:49:38.848Z`; +exports[`date > 1211 > anytime > with only Date refDate 1`] = `2021-12-31T12:49:38.858Z`; -exports[`date > 1211 > anytime > with only number refDate 1`] = `2021-12-31T12:49:38.848Z`; +exports[`date > 1211 > anytime > with only number refDate 1`] = `2021-12-31T12:49:38.858Z`; -exports[`date > 1211 > anytime > with only string refDate 1`] = `2021-12-31T12:49:38.848Z`; +exports[`date > 1211 > anytime > with only string refDate 1`] = `2021-12-31T12:49:38.858Z`; exports[`date > 1211 > between > with Date dates 1`] = `2021-04-17T11:58:13.327Z`; @@ -141,7 +141,7 @@ exports[`date > 1211 > between > with string dates 1`] = `2021-04-17T11:58:13.32 exports[`date > 1211 > betweens > with Date dates 1`] = ` [ - 2021-03-20T19:08:07.621Z, + 2021-03-07T00:34:12.745Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, ] @@ -149,27 +149,27 @@ exports[`date > 1211 > betweens > with Date dates 1`] = ` exports[`date > 1211 > betweens > with Date dates and count 1`] = ` [ - 2021-03-07T00:34:12.770Z, - 2021-03-20T19:08:07.621Z, - 2021-04-08T15:12:37.581Z, + 2021-03-07T00:34:12.745Z, + 2021-04-02T08:42:57.721Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, + 2021-04-21T13:18:14.822Z, ] `; exports[`date > 1211 > betweens > with Date dates and count range 1`] = ` [ - 2021-03-01T09:04:55.612Z, - 2021-03-07T00:34:12.770Z, - 2021-03-20T19:08:07.621Z, - 2021-04-08T15:12:37.581Z, + 2021-03-07T00:34:12.745Z, + 2021-04-02T08:42:57.721Z, + 2021-04-03T02:52:39.944Z, 2021-04-15T10:20:25.794Z, + 2021-04-21T13:18:14.822Z, ] `; exports[`date > 1211 > betweens > with mixed dates 1`] = ` [ - 2021-03-20T19:08:07.621Z, + 2021-03-07T00:34:12.745Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, ] @@ -177,7 +177,7 @@ exports[`date > 1211 > betweens > with mixed dates 1`] = ` exports[`date > 1211 > betweens > with string dates 1`] = ` [ - 2021-03-20T19:08:07.621Z, + 2021-03-07T00:34:12.745Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, ] @@ -185,35 +185,35 @@ exports[`date > 1211 > betweens > with string dates 1`] = ` exports[`date > 1211 > betweens > with string dates and count 1`] = ` [ - 2021-03-07T00:34:12.770Z, - 2021-03-20T19:08:07.621Z, - 2021-04-08T15:12:37.581Z, + 2021-03-07T00:34:12.745Z, + 2021-04-02T08:42:57.721Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, + 2021-04-21T13:18:14.822Z, ] `; -exports[`date > 1211 > birthdate > with age and refDate 1`] = `1981-01-26T13:16:31.421Z`; +exports[`date > 1211 > birthdate > with age and refDate 1`] = `1981-01-26T13:16:31.426Z`; -exports[`date > 1211 > birthdate > with age mode and refDate 1`] = `1998-08-21T21:24:30.782Z`; +exports[`date > 1211 > birthdate > with age mode and refDate 1`] = `1998-08-21T21:24:31.101Z`; -exports[`date > 1211 > birthdate > with age range and refDate 1`] = `1996-10-13T01:44:07.645Z`; +exports[`date > 1211 > birthdate > with age range and refDate 1`] = `1996-10-13T01:44:07.954Z`; -exports[`date > 1211 > birthdate > with only refDate 1`] = `1998-07-25T13:16:46.938Z`; +exports[`date > 1211 > birthdate > with only refDate 1`] = `1998-07-25T13:16:47.251Z`; -exports[`date > 1211 > birthdate > with year and refDate 1`] = `0021-01-26T13:16:31.421Z`; +exports[`date > 1211 > birthdate > with year and refDate 1`] = `0021-01-26T13:16:31.426Z`; -exports[`date > 1211 > birthdate > with year mode and refDate 1`] = `1998-07-25T13:16:46.938Z`; +exports[`date > 1211 > birthdate > with year mode and refDate 1`] = `1998-07-25T13:16:47.251Z`; -exports[`date > 1211 > birthdate > with year range and refDate 1`] = `0113-12-03T19:45:27.654Z`; +exports[`date > 1211 > birthdate > with year range and refDate 1`] = `0113-12-03T19:45:28.165Z`; -exports[`date > 1211 > future > with only Date refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > 1211 > future > with only Date refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > 1211 > future > with only number refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > 1211 > future > with only number refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > 1211 > future > with only string refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > 1211 > future > with only string refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > 1211 > future > with value 1`] = `2030-06-03T19:31:11.467Z`; +exports[`date > 1211 > future > with value 1`] = `2030-06-03T19:31:11.518Z`; exports[`date > 1211 > month > noArgs 1`] = `"December"`; @@ -223,13 +223,13 @@ exports[`date > 1211 > month > with abbreviated = true and context = true 1`] = exports[`date > 1211 > month > with context = true 1`] = `"December"`; -exports[`date > 1211 > past > with only Date refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > 1211 > past > with only Date refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > 1211 > past > with only number refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > 1211 > past > with only number refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > 1211 > past > with only string refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > 1211 > past > with only string refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > 1211 > past > with value 1`] = `2011-11-12T14:47:19.955Z`; +exports[`date > 1211 > past > with value 1`] = `2011-11-12T14:47:19.904Z`; exports[`date > 1211 > recent > with only Date refDate 1`] = `2021-02-20T18:52:11.498Z`; @@ -255,91 +255,91 @@ exports[`date > 1211 > weekday > with abbreviated = true and context = true 1`] exports[`date > 1211 > weekday > with context = true 1`] = `"Saturday"`; -exports[`date > 1337 > anytime > with only Date refDate 1`] = `2020-08-31T23:49:36.088Z`; +exports[`date > 1337 > anytime > with only Date refDate 1`] = `2020-08-31T23:49:36.013Z`; -exports[`date > 1337 > anytime > with only number refDate 1`] = `2020-08-31T23:49:36.088Z`; +exports[`date > 1337 > anytime > with only number refDate 1`] = `2020-08-31T23:49:36.013Z`; -exports[`date > 1337 > anytime > with only string refDate 1`] = `2020-08-31T23:49:36.088Z`; +exports[`date > 1337 > anytime > with only string refDate 1`] = `2020-08-31T23:49:36.013Z`; -exports[`date > 1337 > between > with Date dates 1`] = `2021-03-09T04:11:24.667Z`; +exports[`date > 1337 > between > with Date dates 1`] = `2021-03-09T04:11:24.661Z`; -exports[`date > 1337 > between > with mixed dates 1`] = `2021-03-09T04:11:24.667Z`; +exports[`date > 1337 > between > with mixed dates 1`] = `2021-03-09T04:11:24.661Z`; -exports[`date > 1337 > between > with string dates 1`] = `2021-03-09T04:11:24.667Z`; +exports[`date > 1337 > between > with string dates 1`] = `2021-03-09T04:11:24.661Z`; exports[`date > 1337 > betweens > with Date dates 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-09T04:11:24.667Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, ] `; exports[`date > 1337 > betweens > with Date dates and count 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-06T06:11:08.446Z, - 2021-03-09T04:11:24.667Z, - 2021-03-10T02:59:27.376Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, + 2021-03-12T15:42:07.228Z, + 2021-03-20T19:33:45.512Z, ] `; exports[`date > 1337 > betweens > with Date dates and count range 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-06T06:11:08.446Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-10T02:59:27.388Z, + 2021-03-20T19:33:45.512Z, ] `; exports[`date > 1337 > betweens > with mixed dates 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-09T04:11:24.667Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, ] `; exports[`date > 1337 > betweens > with string dates 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-09T04:11:24.667Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, ] `; exports[`date > 1337 > betweens > with string dates and count 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-06T06:11:08.446Z, - 2021-03-09T04:11:24.667Z, - 2021-03-10T02:59:27.376Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, + 2021-03-12T15:42:07.228Z, + 2021-03-20T19:33:45.512Z, ] `; -exports[`date > 1337 > birthdate > with age and refDate 1`] = `1980-05-27T14:46:44.831Z`; +exports[`date > 1337 > birthdate > with age and refDate 1`] = `1980-05-27T14:46:44.794Z`; -exports[`date > 1337 > birthdate > with age mode and refDate 1`] = `1956-08-25T03:57:00.497Z`; +exports[`date > 1337 > birthdate > with age mode and refDate 1`] = `1956-08-25T03:56:58.153Z`; -exports[`date > 1337 > birthdate > with age range and refDate 1`] = `1956-02-15T21:16:40.120Z`; +exports[`date > 1337 > birthdate > with age range and refDate 1`] = `1956-02-15T21:16:37.850Z`; -exports[`date > 1337 > birthdate > with only refDate 1`] = `1957-03-31T18:18:18.869Z`; +exports[`date > 1337 > birthdate > with only refDate 1`] = `1957-03-31T18:18:16.563Z`; -exports[`date > 1337 > birthdate > with year and refDate 1`] = `0020-05-27T14:46:44.831Z`; +exports[`date > 1337 > birthdate > with year and refDate 1`] = `0020-05-27T14:46:44.794Z`; -exports[`date > 1337 > birthdate > with year mode and refDate 1`] = `1957-03-31T18:18:18.869Z`; +exports[`date > 1337 > birthdate > with year mode and refDate 1`] = `1957-03-31T18:18:16.563Z`; -exports[`date > 1337 > birthdate > with year range and refDate 1`] = `0046-08-09T19:19:18.047Z`; +exports[`date > 1337 > birthdate > with year range and refDate 1`] = `0046-08-09T19:19:14.289Z`; -exports[`date > 1337 > future > with only Date refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > 1337 > future > with only Date refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > 1337 > future > with only number refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > 1337 > future > with only number refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > 1337 > future > with only string refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > 1337 > future > with only string refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > 1337 > future > with value 1`] = `2023-10-06T02:30:58.333Z`; +exports[`date > 1337 > future > with value 1`] = `2023-10-06T02:30:57.962Z`; exports[`date > 1337 > month > noArgs 1`] = `"April"`; @@ -349,13 +349,13 @@ exports[`date > 1337 > month > with abbreviated = true and context = true 1`] = exports[`date > 1337 > month > with context = true 1`] = `"April"`; -exports[`date > 1337 > past > with only Date refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > 1337 > past > with only Date refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > 1337 > past > with only number refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > 1337 > past > with only number refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > 1337 > past > with only string refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > 1337 > past > with only string refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > 1337 > past > with value 1`] = `2018-07-11T07:47:33.089Z`; +exports[`date > 1337 > past > with value 1`] = `2018-07-11T07:47:33.460Z`; exports[`date > 1337 > recent > with only Date refDate 1`] = `2021-02-21T10:51:56.041Z`; @@ -363,7 +363,7 @@ exports[`date > 1337 > recent > with only number refDate 1`] = `2021-02-21T10:51 exports[`date > 1337 > recent > with only string refDate 1`] = `2021-02-21T10:51:56.041Z`; -exports[`date > 1337 > recent > with value 1`] = `2021-02-19T02:16:05.653Z`; +exports[`date > 1337 > recent > with value 1`] = `2021-02-19T02:16:05.654Z`; exports[`date > 1337 > soon > with only Date refDate 1`] = `2021-02-21T23:26:35.381Z`; @@ -371,7 +371,7 @@ exports[`date > 1337 > soon > with only number refDate 1`] = `2021-02-21T23:26:3 exports[`date > 1337 > soon > with only string refDate 1`] = `2021-02-21T23:26:35.381Z`; -exports[`date > 1337 > soon > with value 1`] = `2021-02-24T08:02:25.769Z`; +exports[`date > 1337 > soon > with value 1`] = `2021-02-24T08:02:25.768Z`; exports[`date > 1337 > weekday > noArgs 1`] = `"Monday"`; @@ -381,77 +381,77 @@ exports[`date > 1337 > weekday > with abbreviated = true and context = true 1`] exports[`date > 1337 > weekday > with context = true 1`] = `"Monday"`; -exports[`date > deprecated > 42 > between > with Date dates 1`] = `2021-03-15T19:30:57.091Z`; +exports[`date > deprecated > 42 > between > with Date dates 1`] = `2021-03-15T19:30:57.115Z`; -exports[`date > deprecated > 42 > between > with string dates 1`] = `2021-03-15T19:30:57.091Z`; +exports[`date > deprecated > 42 > between > with string dates 1`] = `2021-03-15T19:30:57.115Z`; exports[`date > deprecated > 42 > betweens > with Date dates 1`] = ` [ - 2021-03-15T19:30:57.091Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-15T19:30:57.115Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > deprecated > 42 > betweens > with Date dates and count 1`] = ` [ - 2021-03-04T12:54:15.263Z, - 2021-03-15T19:30:57.091Z, - 2021-04-05T21:40:57.315Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-02T22:04:55.366Z, + 2021-03-15T19:30:57.115Z, + 2021-03-29T00:52:30.236Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > deprecated > 42 > betweens > with string dates 1`] = ` [ - 2021-03-15T19:30:57.091Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-15T19:30:57.115Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; exports[`date > deprecated > 42 > betweens > with string dates and count 1`] = ` [ - 2021-03-04T12:54:15.263Z, - 2021-03-15T19:30:57.091Z, - 2021-04-05T21:40:57.315Z, - 2021-04-09T17:05:10.406Z, - 2021-04-18T19:23:52.973Z, + 2021-03-02T22:04:55.366Z, + 2021-03-15T19:30:57.115Z, + 2021-03-29T00:52:30.236Z, + 2021-04-05T21:40:57.332Z, + 2021-04-18T19:23:52.947Z, ] `; -exports[`date > deprecated > 42 > future > with only Date refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > deprecated > 42 > future > with only Date refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > deprecated > 42 > future > with only number refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > deprecated > 42 > future > with only number refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > deprecated > 42 > future > with only string refDate 1`] = `2021-07-08T10:07:33.381Z`; +exports[`date > deprecated > 42 > future > with only string refDate 1`] = `2021-07-08T10:07:33.524Z`; -exports[`date > deprecated > 42 > future > with value 1`] = `2024-11-19T18:52:06.785Z`; +exports[`date > deprecated > 42 > future > with value 1`] = `2024-11-19T18:52:08.216Z`; -exports[`date > deprecated > 42 > past > with only Date refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > deprecated > 42 > past > with only Date refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > deprecated > 42 > past > with only number refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > deprecated > 42 > past > with only number refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > deprecated > 42 > past > with only string refDate 1`] = `2020-10-08T00:10:58.041Z`; +exports[`date > deprecated > 42 > past > with only string refDate 1`] = `2020-10-08T00:10:57.898Z`; -exports[`date > deprecated > 42 > past > with value 1`] = `2017-05-26T15:26:24.637Z`; +exports[`date > deprecated > 42 > past > with value 1`] = `2017-05-26T15:26:23.206Z`; -exports[`date > deprecated > 42 > recent > with only Date refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > deprecated > 42 > recent > with only Date refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > deprecated > 42 > recent > with only number refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > deprecated > 42 > recent > with only number refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > deprecated > 42 > recent > with only string refDate 1`] = `2021-02-21T08:09:54.820Z`; +exports[`date > deprecated > 42 > recent > with only string refDate 1`] = `2021-02-21T08:09:54.819Z`; -exports[`date > deprecated > 42 > recent > with value 1`] = `2021-02-17T23:15:52.427Z`; +exports[`date > deprecated > 42 > recent > with value 1`] = `2021-02-17T23:15:52.423Z`; -exports[`date > deprecated > 42 > soon > with only Date refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > deprecated > 42 > soon > with only Date refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > deprecated > 42 > soon > with only number refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > deprecated > 42 > soon > with only number refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > deprecated > 42 > soon > with only string refDate 1`] = `2021-02-22T02:08:36.602Z`; +exports[`date > deprecated > 42 > soon > with only string refDate 1`] = `2021-02-22T02:08:36.603Z`; -exports[`date > deprecated > 42 > soon > with value 1`] = `2021-02-25T11:02:38.995Z`; +exports[`date > deprecated > 42 > soon > with value 1`] = `2021-02-25T11:02:38.999Z`; exports[`date > deprecated > 1211 > between > with Date dates 1`] = `2021-04-17T11:58:13.327Z`; @@ -459,7 +459,7 @@ exports[`date > deprecated > 1211 > between > with string dates 1`] = `2021-04-1 exports[`date > deprecated > 1211 > betweens > with Date dates 1`] = ` [ - 2021-03-20T19:08:07.621Z, + 2021-03-07T00:34:12.745Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, ] @@ -467,17 +467,17 @@ exports[`date > deprecated > 1211 > betweens > with Date dates 1`] = ` exports[`date > deprecated > 1211 > betweens > with Date dates and count 1`] = ` [ - 2021-03-07T00:34:12.770Z, - 2021-03-20T19:08:07.621Z, - 2021-04-08T15:12:37.581Z, + 2021-03-07T00:34:12.745Z, + 2021-04-02T08:42:57.721Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, + 2021-04-21T13:18:14.822Z, ] `; exports[`date > deprecated > 1211 > betweens > with string dates 1`] = ` [ - 2021-03-20T19:08:07.621Z, + 2021-03-07T00:34:12.745Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, ] @@ -485,29 +485,29 @@ exports[`date > deprecated > 1211 > betweens > with string dates 1`] = ` exports[`date > deprecated > 1211 > betweens > with string dates and count 1`] = ` [ - 2021-03-07T00:34:12.770Z, - 2021-03-20T19:08:07.621Z, - 2021-04-08T15:12:37.581Z, + 2021-03-07T00:34:12.745Z, + 2021-04-02T08:42:57.721Z, 2021-04-15T10:20:25.794Z, 2021-04-17T11:58:13.327Z, + 2021-04-21T13:18:14.822Z, ] `; -exports[`date > deprecated > 1211 > future > with only Date refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > deprecated > 1211 > future > with only Date refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > deprecated > 1211 > future > with only number refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > deprecated > 1211 > future > with only number refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > deprecated > 1211 > future > with only string refDate 1`] = `2022-01-26T14:59:27.351Z`; +exports[`date > deprecated > 1211 > future > with only string refDate 1`] = `2022-01-26T14:59:27.356Z`; -exports[`date > deprecated > 1211 > future > with value 1`] = `2030-06-03T19:31:11.467Z`; +exports[`date > deprecated > 1211 > future > with value 1`] = `2030-06-03T19:31:11.518Z`; -exports[`date > deprecated > 1211 > past > with only Date refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > deprecated > 1211 > past > with only Date refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > deprecated > 1211 > past > with only number refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > deprecated > 1211 > past > with only number refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > deprecated > 1211 > past > with only string refDate 1`] = `2020-03-19T19:19:04.071Z`; +exports[`date > deprecated > 1211 > past > with only string refDate 1`] = `2020-03-19T19:19:04.066Z`; -exports[`date > deprecated > 1211 > past > with value 1`] = `2011-11-12T14:47:19.955Z`; +exports[`date > deprecated > 1211 > past > with value 1`] = `2011-11-12T14:47:19.904Z`; exports[`date > deprecated > 1211 > recent > with only Date refDate 1`] = `2021-02-20T18:52:11.498Z`; @@ -525,61 +525,61 @@ exports[`date > deprecated > 1211 > soon > with only string refDate 1`] = `2021- exports[`date > deprecated > 1211 > soon > with value 1`] = `2021-03-02T23:59:57.196Z`; -exports[`date > deprecated > 1337 > between > with Date dates 1`] = `2021-03-09T04:11:24.667Z`; +exports[`date > deprecated > 1337 > between > with Date dates 1`] = `2021-03-09T04:11:24.661Z`; -exports[`date > deprecated > 1337 > between > with string dates 1`] = `2021-03-09T04:11:24.667Z`; +exports[`date > deprecated > 1337 > between > with string dates 1`] = `2021-03-09T04:11:24.661Z`; exports[`date > deprecated > 1337 > betweens > with Date dates 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-09T04:11:24.667Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, ] `; exports[`date > deprecated > 1337 > betweens > with Date dates and count 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-06T06:11:08.446Z, - 2021-03-09T04:11:24.667Z, - 2021-03-10T02:59:27.376Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, + 2021-03-12T15:42:07.228Z, + 2021-03-20T19:33:45.512Z, ] `; exports[`date > deprecated > 1337 > betweens > with string dates 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-09T04:11:24.667Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, ] `; exports[`date > deprecated > 1337 > betweens > with string dates and count 1`] = ` [ - 2021-03-03T01:51:22.512Z, - 2021-03-06T06:11:08.446Z, - 2021-03-09T04:11:24.667Z, - 2021-03-10T02:59:27.376Z, - 2021-03-26T18:53:00.564Z, + 2021-03-03T01:51:22.487Z, + 2021-03-09T04:11:24.661Z, + 2021-03-10T02:59:27.388Z, + 2021-03-12T15:42:07.228Z, + 2021-03-20T19:33:45.512Z, ] `; -exports[`date > deprecated > 1337 > future > with only Date refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > deprecated > 1337 > future > with only Date refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > deprecated > 1337 > future > with only number refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > deprecated > 1337 > future > with only number refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > deprecated > 1337 > future > with only string refDate 1`] = `2021-05-28T08:29:26.637Z`; +exports[`date > deprecated > 1337 > future > with only string refDate 1`] = `2021-05-28T08:29:26.600Z`; -exports[`date > deprecated > 1337 > future > with value 1`] = `2023-10-06T02:30:58.333Z`; +exports[`date > deprecated > 1337 > future > with value 1`] = `2023-10-06T02:30:57.962Z`; -exports[`date > deprecated > 1337 > past > with only Date refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > deprecated > 1337 > past > with only Date refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > deprecated > 1337 > past > with only number refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > deprecated > 1337 > past > with only number refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > deprecated > 1337 > past > with only string refDate 1`] = `2020-11-18T01:49:04.785Z`; +exports[`date > deprecated > 1337 > past > with only string refDate 1`] = `2020-11-18T01:49:04.822Z`; -exports[`date > deprecated > 1337 > past > with value 1`] = `2018-07-11T07:47:33.089Z`; +exports[`date > deprecated > 1337 > past > with value 1`] = `2018-07-11T07:47:33.460Z`; exports[`date > deprecated > 1337 > recent > with only Date refDate 1`] = `2021-02-21T10:51:56.041Z`; @@ -587,7 +587,7 @@ exports[`date > deprecated > 1337 > recent > with only number refDate 1`] = `202 exports[`date > deprecated > 1337 > recent > with only string refDate 1`] = `2021-02-21T10:51:56.041Z`; -exports[`date > deprecated > 1337 > recent > with value 1`] = `2021-02-19T02:16:05.653Z`; +exports[`date > deprecated > 1337 > recent > with value 1`] = `2021-02-19T02:16:05.654Z`; exports[`date > deprecated > 1337 > soon > with only Date refDate 1`] = `2021-02-21T23:26:35.381Z`; @@ -595,4 +595,4 @@ exports[`date > deprecated > 1337 > soon > with only number refDate 1`] = `2021- exports[`date > deprecated > 1337 > soon > with only string refDate 1`] = `2021-02-21T23:26:35.381Z`; -exports[`date > deprecated > 1337 > soon > with value 1`] = `2021-02-24T08:02:25.769Z`; +exports[`date > deprecated > 1337 > soon > with value 1`] = `2021-02-24T08:02:25.768Z`; diff --git a/test/modules/__snapshots__/finance.spec.ts.snap b/test/modules/__snapshots__/finance.spec.ts.snap index b2478f58ea4..146db5d6290 100644 --- a/test/modules/__snapshots__/finance.spec.ts.snap +++ b/test/modules/__snapshots__/finance.spec.ts.snap @@ -1,20 +1,20 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`finance > 42 > account > noArgs 1`] = `"37917755"`; +exports[`finance > 42 > account > noArgs 1`] = `"39751108"`; -exports[`finance > 42 > account > with length 1`] = `"3791775514"`; +exports[`finance > 42 > account > with length 1`] = `"3975110867"`; exports[`finance > 42 > accountName 1`] = `"Money Market Account"`; -exports[`finance > 42 > accountNumber > noArgs 1`] = `"37917755"`; +exports[`finance > 42 > accountNumber > noArgs 1`] = `"39751108"`; -exports[`finance > 42 > accountNumber > with length 1`] = `"3791775514"`; +exports[`finance > 42 > accountNumber > with length 1`] = `"3975110867"`; -exports[`finance > 42 > accountNumber > with length option 1`] = `"3791775514"`; +exports[`finance > 42 > accountNumber > with length option 1`] = `"3975110867"`; exports[`finance > 42 > amount > noArgs 1`] = `"374.54"`; -exports[`finance > 42 > amount > with leagcy dec 1`] = `"374.54011"`; +exports[`finance > 42 > amount > with leagcy dec 1`] = `"374.54012"`; exports[`finance > 42 > amount > with leagcy max 1`] = `"18.73"`; @@ -32,23 +32,23 @@ exports[`finance > 42 > amount > with min, max, dec and symbol option 1`] = `"#2 exports[`finance > 42 > amount > with min, max, dec, symbol and autoFormat option 1`] = `"#24.98160"`; -exports[`finance > 42 > bic > noArgs 1`] = `"UYETSCLLG53"`; +exports[`finance > 42 > bic > noArgs 1`] = `"YTPECC2VXXX"`; -exports[`finance > 42 > bic > with branch code 1`] = `"JUYEPSSLXXX"`; +exports[`finance > 42 > bic > with branch code 1`] = `"JYTPCD52XXX"`; -exports[`finance > 42 > bitcoinAddress 1`] = `"3XbJMAAara64sSkA9HD24YHQWd1bZbB"`; +exports[`finance > 42 > bitcoinAddress 1`] = `"3JAaa4SAH2YQdbbiwrhB9hnsMcvA3Ba"`; -exports[`finance > 42 > creditCardCVV 1`] = `"379"`; +exports[`finance > 42 > creditCardCVV 1`] = `"397"`; exports[`finance > 42 > creditCardIssuer 1`] = `"discover"`; -exports[`finance > 42 > creditCardNumber > noArgs 1`] = `"6591-6277-5514-1004-8364"`; +exports[`finance > 42 > creditCardNumber > noArgs 1`] = `"6485-6211-0867-0982-1138"`; -exports[`finance > 42 > creditCardNumber > with issuer 1`] = `"4791775514102"`; +exports[`finance > 42 > creditCardNumber > with issuer 1`] = `"4975110867099"`; -exports[`finance > 42 > creditCardNumber > with issuer option mastercard 1`] = `"5491-7755-1410-0488"`; +exports[`finance > 42 > creditCardNumber > with issuer option mastercard 1`] = `"5575-1108-6709-8213"`; -exports[`finance > 42 > creditCardNumber > with issuer option visa 1`] = `"4791775514102"`; +exports[`finance > 42 > creditCardNumber > with issuer option visa 1`] = `"4975110867099"`; exports[`finance > 42 > currency 1`] = ` { @@ -64,63 +64,63 @@ exports[`finance > 42 > currencyName 1`] = `"New Israeli Sheqel"`; exports[`finance > 42 > currencySymbol 1`] = `"₪"`; -exports[`finance > 42 > ethereumAddress 1`] = `"0x8be4abdd39321ad7d3fe01ffce404f4d6db0906b"`; +exports[`finance > 42 > ethereumAddress 1`] = `"0x8ead331ddf0fc4446b96d368ab4bd1d31efb62f9"`; -exports[`finance > 42 > iban > noArgs 1`] = `"GT03975110867098F1E3542612J4"`; +exports[`finance > 42 > iban > noArgs 1`] = `"GT69T10P0V1346241560ZH610G35"`; -exports[`finance > 42 > iban > with formatted 1`] = `"GT03 9751 1086 7098 F1E3 5426 12J4"`; +exports[`finance > 42 > iban > with formatted 1`] = `"GT69 T10P 0V13 4624 1560 ZH61 0G35"`; -exports[`finance > 42 > iban > with formatted and countryCode 1`] = `"DE47 7175 0020 0086 0600 97"`; +exports[`finance > 42 > iban > with formatted and countryCode 1`] = `"DE69 9500 1670 8002 5210 05"`; -exports[`finance > 42 > iban > with formatted and countryCode option 1`] = `"DE47 7175 0020 0086 0600 97"`; +exports[`finance > 42 > iban > with formatted and countryCode option 1`] = `"DE69 9500 1670 8002 5210 05"`; -exports[`finance > 42 > iban > with formatted option 1`] = `"GT03 9751 1086 7098 F1E3 5426 12J4"`; +exports[`finance > 42 > iban > with formatted option 1`] = `"GT69 T10P 0V13 4624 1560 ZH61 0G35"`; -exports[`finance > 42 > litecoinAddress 1`] = `"3XbJMAAara64sSkA9HD24YHQWd1b"`; +exports[`finance > 42 > litecoinAddress 1`] = `"3JAaa4SAH2YQdbbiwrhB9hnsMcvA"`; -exports[`finance > 42 > mask > noArgs 1`] = `"(...3791)"`; +exports[`finance > 42 > mask > noArgs 1`] = `"(...3975)"`; -exports[`finance > 42 > mask > with ellipsis 1`] = `"(...3791)"`; +exports[`finance > 42 > mask > with ellipsis 1`] = `"(...3975)"`; -exports[`finance > 42 > mask > with length 1`] = `"(...37917)"`; +exports[`finance > 42 > mask > with length 1`] = `"(...39751)"`; -exports[`finance > 42 > mask > with length, parenthesis and ellipsis 1`] = `"(...37917)"`; +exports[`finance > 42 > mask > with length, parenthesis and ellipsis 1`] = `"(...39751)"`; -exports[`finance > 42 > mask > with parenthesis 1`] = `"(...3791)"`; +exports[`finance > 42 > mask > with parenthesis 1`] = `"(...3975)"`; -exports[`finance > 42 > maskedNumber > noArgs 1`] = `"(...3791)"`; +exports[`finance > 42 > maskedNumber > noArgs 1`] = `"(...3975)"`; -exports[`finance > 42 > maskedNumber > with length 1`] = `"(...37917)"`; +exports[`finance > 42 > maskedNumber > with length 1`] = `"(...39751)"`; -exports[`finance > 42 > maskedNumber > with length and parenthesis option 1`] = `"...37917"`; +exports[`finance > 42 > maskedNumber > with length and parenthesis option 1`] = `"...39751"`; -exports[`finance > 42 > maskedNumber > with length option 1`] = `"(...37917)"`; +exports[`finance > 42 > maskedNumber > with length option 1`] = `"(...39751)"`; -exports[`finance > 42 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...37917"`; +exports[`finance > 42 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...39751"`; -exports[`finance > 42 > pin > noArgs 1`] = `"3791"`; +exports[`finance > 42 > pin > noArgs 1`] = `"3975"`; -exports[`finance > 42 > pin > with length 1`] = `"3791775514"`; +exports[`finance > 42 > pin > with length 1`] = `"3975110867"`; -exports[`finance > 42 > pin > with length option 1`] = `"3791775514"`; +exports[`finance > 42 > pin > with length option 1`] = `"3975110867"`; -exports[`finance > 42 > routingNumber 1`] = `"379177554"`; +exports[`finance > 42 > routingNumber 1`] = `"397511082"`; -exports[`finance > 42 > transactionDescription 1`] = `"invoice transaction at Wiegand, Deckow and Reynolds using card ending with ***(...8361) for RSD 374.54 in account ***55141004"`; +exports[`finance > 42 > transactionDescription 1`] = `"deposit transaction at Reynolds, Miller and Crist using card ending with ***(...1135) for KES 374.54 in account ***08670982"`; exports[`finance > 42 > transactionType 1`] = `"withdrawal"`; -exports[`finance > 1211 > account > noArgs 1`] = `"94872190"`; +exports[`finance > 1211 > account > noArgs 1`] = `"98296673"`; -exports[`finance > 1211 > account > with length 1`] = `"9487219061"`; +exports[`finance > 1211 > account > with length 1`] = `"9829667368"`; exports[`finance > 1211 > accountName 1`] = `"Personal Loan Account"`; -exports[`finance > 1211 > accountNumber > noArgs 1`] = `"94872190"`; +exports[`finance > 1211 > accountNumber > noArgs 1`] = `"98296673"`; -exports[`finance > 1211 > accountNumber > with length 1`] = `"9487219061"`; +exports[`finance > 1211 > accountNumber > with length 1`] = `"9829667368"`; -exports[`finance > 1211 > accountNumber > with length option 1`] = `"9487219061"`; +exports[`finance > 1211 > accountNumber > with length option 1`] = `"9829667368"`; exports[`finance > 1211 > amount > noArgs 1`] = `"928.52"`; @@ -142,23 +142,23 @@ exports[`finance > 1211 > amount > with min, max, dec and symbol option 1`] = `" exports[`finance > 1211 > amount > with min, max, dec, symbol and autoFormat option 1`] = `"#47.14081"`; -exports[`finance > 1211 > bic > noArgs 1`] = `"LXUFBTZ1"`; +exports[`finance > 1211 > bic > noArgs 1`] = `"XFZROMRC"`; -exports[`finance > 1211 > bic > with branch code 1`] = `"YLXUDE4ZO5O"`; +exports[`finance > 1211 > bic > with branch code 1`] = `"YXFZNPOROTR"`; -exports[`finance > 1211 > bitcoinAddress 1`] = `"1TMe8Z3EaFdLqmaGKP1LEEJQVriSZRZdsAUc9nC"`; +exports[`finance > 1211 > bitcoinAddress 1`] = `"3eZEFLmGPLEQrSRdAcnZLoWwYeiHwmRogjbyG9G"`; -exports[`finance > 1211 > creditCardCVV 1`] = `"948"`; +exports[`finance > 1211 > creditCardCVV 1`] = `"982"`; exports[`finance > 1211 > creditCardIssuer 1`] = `"visa"`; -exports[`finance > 1211 > creditCardNumber > noArgs 1`] = `"4872190616274"`; +exports[`finance > 1211 > creditCardNumber > noArgs 1`] = `"4296-6736-8768-4885"`; -exports[`finance > 1211 > creditCardNumber > with issuer 1`] = `"4487-2190-6162-7436"`; +exports[`finance > 1211 > creditCardNumber > with issuer 1`] = `"4829-6673-6876-8484"`; -exports[`finance > 1211 > creditCardNumber > with issuer option mastercard 1`] = `"2450-8721-9061-6279"`; +exports[`finance > 1211 > creditCardNumber > with issuer option mastercard 1`] = `"2667-2966-7368-7681"`; -exports[`finance > 1211 > creditCardNumber > with issuer option visa 1`] = `"4487-2190-6162-7436"`; +exports[`finance > 1211 > creditCardNumber > with issuer option visa 1`] = `"4829-6673-6876-8484"`; exports[`finance > 1211 > currency 1`] = ` { @@ -172,65 +172,65 @@ exports[`finance > 1211 > currencyCode 1`] = `"VUV"`; exports[`finance > 1211 > currencyName 1`] = `"Vatu"`; -exports[`finance > 1211 > currencySymbol 1`] = `"₩"`; +exports[`finance > 1211 > currencySymbol 1`] = `"$"`; -exports[`finance > 1211 > ethereumAddress 1`] = `"0xeadb42f0e3f4a973fab0aeefce96dfcf49cd438d"`; +exports[`finance > 1211 > ethereumAddress 1`] = `"0xed4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3f"`; -exports[`finance > 1211 > iban > noArgs 1`] = `"TN4282016024170679299006"`; +exports[`finance > 1211 > iban > noArgs 1`] = `"TN8326736788219352058231"`; -exports[`finance > 1211 > iban > with formatted 1`] = `"TN42 8201 6024 1706 7929 9006"`; +exports[`finance > 1211 > iban > with formatted 1`] = `"TN83 2673 6788 2193 5205 8231"`; -exports[`finance > 1211 > iban > with formatted and countryCode 1`] = `"DE41 4700 9026 0417 0679 42"`; +exports[`finance > 1211 > iban > with formatted and countryCode 1`] = `"DE13 8077 6768 8219 3520 53"`; -exports[`finance > 1211 > iban > with formatted and countryCode option 1`] = `"DE41 4700 9026 0417 0679 42"`; +exports[`finance > 1211 > iban > with formatted and countryCode option 1`] = `"DE13 8077 6768 8219 3520 53"`; -exports[`finance > 1211 > iban > with formatted option 1`] = `"TN42 8201 6024 1706 7929 9006"`; +exports[`finance > 1211 > iban > with formatted option 1`] = `"TN83 2673 6788 2193 5205 8231"`; -exports[`finance > 1211 > litecoinAddress 1`] = `"MTMe8Z3EaFdLqmaGKP1LEEJQVriSZRZds"`; +exports[`finance > 1211 > litecoinAddress 1`] = `"3eZEFLmGPLEQrSRdAcnZLoWwYeiHwmRog"`; -exports[`finance > 1211 > mask > noArgs 1`] = `"(...9487)"`; +exports[`finance > 1211 > mask > noArgs 1`] = `"(...9829)"`; -exports[`finance > 1211 > mask > with ellipsis 1`] = `"(...9487)"`; +exports[`finance > 1211 > mask > with ellipsis 1`] = `"(...9829)"`; -exports[`finance > 1211 > mask > with length 1`] = `"(...94872)"`; +exports[`finance > 1211 > mask > with length 1`] = `"(...98296)"`; -exports[`finance > 1211 > mask > with length, parenthesis and ellipsis 1`] = `"(...94872)"`; +exports[`finance > 1211 > mask > with length, parenthesis and ellipsis 1`] = `"(...98296)"`; -exports[`finance > 1211 > mask > with parenthesis 1`] = `"(...9487)"`; +exports[`finance > 1211 > mask > with parenthesis 1`] = `"(...9829)"`; -exports[`finance > 1211 > maskedNumber > noArgs 1`] = `"(...9487)"`; +exports[`finance > 1211 > maskedNumber > noArgs 1`] = `"(...9829)"`; -exports[`finance > 1211 > maskedNumber > with length 1`] = `"(...94872)"`; +exports[`finance > 1211 > maskedNumber > with length 1`] = `"(...98296)"`; -exports[`finance > 1211 > maskedNumber > with length and parenthesis option 1`] = `"...94872"`; +exports[`finance > 1211 > maskedNumber > with length and parenthesis option 1`] = `"...98296"`; -exports[`finance > 1211 > maskedNumber > with length option 1`] = `"(...94872)"`; +exports[`finance > 1211 > maskedNumber > with length option 1`] = `"(...98296)"`; -exports[`finance > 1211 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...94872"`; +exports[`finance > 1211 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...98296"`; -exports[`finance > 1211 > pin > noArgs 1`] = `"9487"`; +exports[`finance > 1211 > pin > noArgs 1`] = `"9829"`; -exports[`finance > 1211 > pin > with length 1`] = `"9487219061"`; +exports[`finance > 1211 > pin > with length 1`] = `"9829667368"`; -exports[`finance > 1211 > pin > with length option 1`] = `"9487219061"`; +exports[`finance > 1211 > pin > with length option 1`] = `"9829667368"`; -exports[`finance > 1211 > routingNumber 1`] = `"948721904"`; +exports[`finance > 1211 > routingNumber 1`] = `"982966738"`; -exports[`finance > 1211 > transactionDescription 1`] = `"deposit transaction at Trantow - Satterfield using card ending with ***(...4316) for SDG 928.52 in account ***19061627"`; +exports[`finance > 1211 > transactionDescription 1`] = `"payment transaction at Fahey, Zieme and Osinski using card ending with ***(...8825) for CRC 928.52 in account ***73687684"`; exports[`finance > 1211 > transactionType 1`] = `"invoice"`; -exports[`finance > 1337 > account > noArgs 1`] = `"25122540"`; +exports[`finance > 1337 > account > noArgs 1`] = `"21243529"`; -exports[`finance > 1337 > account > with length 1`] = `"2512254032"`; +exports[`finance > 1337 > account > with length 1`] = `"2124352971"`; exports[`finance > 1337 > accountName 1`] = `"Money Market Account"`; -exports[`finance > 1337 > accountNumber > noArgs 1`] = `"25122540"`; +exports[`finance > 1337 > accountNumber > noArgs 1`] = `"21243529"`; -exports[`finance > 1337 > accountNumber > with length 1`] = `"2512254032"`; +exports[`finance > 1337 > accountNumber > with length 1`] = `"2124352971"`; -exports[`finance > 1337 > accountNumber > with length option 1`] = `"2512254032"`; +exports[`finance > 1337 > accountNumber > with length option 1`] = `"2124352971"`; exports[`finance > 1337 > amount > noArgs 1`] = `"262.02"`; @@ -252,23 +252,23 @@ exports[`finance > 1337 > amount > with min, max, dec and symbol option 1`] = `" exports[`finance > 1337 > amount > with min, max, dec, symbol and autoFormat option 1`] = `"#20.48098"`; -exports[`finance > 1337 > bic > noArgs 1`] = `"OEFHLYG18IL"`; +exports[`finance > 1337 > bic > noArgs 1`] = `"EHLILK9ZXXX"`; -exports[`finance > 1337 > bic > with branch code 1`] = `"GOEFFIJGB8I"`; +exports[`finance > 1337 > bic > with branch code 1`] = `"GEHLGGI9XXX"`; -exports[`finance > 1337 > bitcoinAddress 1`] = `"3adhxs2jewAgkYgJi7No6Cn8JZarS"`; +exports[`finance > 1337 > bitcoinAddress 1`] = `"1hsjwgYJ7oC8ZrMNmqzLbhEubpcwQ"`; -exports[`finance > 1337 > creditCardCVV 1`] = `"251"`; +exports[`finance > 1337 > creditCardCVV 1`] = `"212"`; exports[`finance > 1337 > creditCardIssuer 1`] = `"diners_club"`; -exports[`finance > 1337 > creditCardNumber > noArgs 1`] = `"3612-254032-5529"`; +exports[`finance > 1337 > creditCardNumber > noArgs 1`] = `"3014-352971-3614"`; -exports[`finance > 1337 > creditCardNumber > with issuer 1`] = `"4512254032550"`; +exports[`finance > 1337 > creditCardNumber > with issuer 1`] = `"4124352971364"`; -exports[`finance > 1337 > creditCardNumber > with issuer option mastercard 1`] = `"5312-2540-3255-2395"`; +exports[`finance > 1337 > creditCardNumber > with issuer option mastercard 1`] = `"5124-3529-7136-1949"`; -exports[`finance > 1337 > creditCardNumber > with issuer option visa 1`] = `"4512254032550"`; +exports[`finance > 1337 > creditCardNumber > with issuer option visa 1`] = `"4124352971364"`; exports[`finance > 1337 > currency 1`] = ` { @@ -284,48 +284,48 @@ exports[`finance > 1337 > currencyName 1`] = `"Ethiopian Birr"`; exports[`finance > 1337 > currencySymbol 1`] = `"$"`; -exports[`finance > 1337 > ethereumAddress 1`] = `"0x5c346ba075bd57f5a62b82d72af39cbbb07a98cb"`; +exports[`finance > 1337 > ethereumAddress 1`] = `"0x536a7b5fa28d2f9bb79ca46ea394bc4f9bb0af32"`; -exports[`finance > 1337 > iban > noArgs 1`] = `"FO5610050250090318"`; +exports[`finance > 1337 > iban > noArgs 1`] = `"FO2200532700604734"`; -exports[`finance > 1337 > iban > with formatted 1`] = `"FO56 1005 0250 0903 18"`; +exports[`finance > 1337 > iban > with formatted 1`] = `"FO22 0053 2700 6047 34"`; -exports[`finance > 1337 > iban > with formatted and countryCode 1`] = `"DE04 0200 5032 5009 0304 06"`; +exports[`finance > 1337 > iban > with formatted and countryCode 1`] = `"DE04 0033 2713 1474 7007 41"`; -exports[`finance > 1337 > iban > with formatted and countryCode option 1`] = `"DE04 0200 5032 5009 0304 06"`; +exports[`finance > 1337 > iban > with formatted and countryCode option 1`] = `"DE04 0033 2713 1474 7007 41"`; -exports[`finance > 1337 > iban > with formatted option 1`] = `"FO56 1005 0250 0903 18"`; +exports[`finance > 1337 > iban > with formatted option 1`] = `"FO22 0053 2700 6047 34"`; -exports[`finance > 1337 > litecoinAddress 1`] = `"Madhxs2jewAgkYgJi7No6Cn8JZar"`; +exports[`finance > 1337 > litecoinAddress 1`] = `"LhsjwgYJ7oC8ZrMNmqzLbhEubpcw"`; -exports[`finance > 1337 > mask > noArgs 1`] = `"(...2512)"`; +exports[`finance > 1337 > mask > noArgs 1`] = `"(...2124)"`; -exports[`finance > 1337 > mask > with ellipsis 1`] = `"(...2512)"`; +exports[`finance > 1337 > mask > with ellipsis 1`] = `"(...2124)"`; -exports[`finance > 1337 > mask > with length 1`] = `"(...25122)"`; +exports[`finance > 1337 > mask > with length 1`] = `"(...21243)"`; -exports[`finance > 1337 > mask > with length, parenthesis and ellipsis 1`] = `"(...25122)"`; +exports[`finance > 1337 > mask > with length, parenthesis and ellipsis 1`] = `"(...21243)"`; -exports[`finance > 1337 > mask > with parenthesis 1`] = `"(...2512)"`; +exports[`finance > 1337 > mask > with parenthesis 1`] = `"(...2124)"`; -exports[`finance > 1337 > maskedNumber > noArgs 1`] = `"(...2512)"`; +exports[`finance > 1337 > maskedNumber > noArgs 1`] = `"(...2124)"`; -exports[`finance > 1337 > maskedNumber > with length 1`] = `"(...25122)"`; +exports[`finance > 1337 > maskedNumber > with length 1`] = `"(...21243)"`; -exports[`finance > 1337 > maskedNumber > with length and parenthesis option 1`] = `"...25122"`; +exports[`finance > 1337 > maskedNumber > with length and parenthesis option 1`] = `"...21243"`; -exports[`finance > 1337 > maskedNumber > with length option 1`] = `"(...25122)"`; +exports[`finance > 1337 > maskedNumber > with length option 1`] = `"(...21243)"`; -exports[`finance > 1337 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...25122"`; +exports[`finance > 1337 > maskedNumber > with length, parenthesis and ellipsis option 1`] = `"...21243"`; -exports[`finance > 1337 > pin > noArgs 1`] = `"2512"`; +exports[`finance > 1337 > pin > noArgs 1`] = `"2124"`; -exports[`finance > 1337 > pin > with length 1`] = `"2512254032"`; +exports[`finance > 1337 > pin > with length 1`] = `"2124352971"`; -exports[`finance > 1337 > pin > with length option 1`] = `"2512254032"`; +exports[`finance > 1337 > pin > with length option 1`] = `"2124352971"`; -exports[`finance > 1337 > routingNumber 1`] = `"251225401"`; +exports[`finance > 1337 > routingNumber 1`] = `"212435298"`; -exports[`finance > 1337 > transactionDescription 1`] = `"withdrawal transaction at Cronin - Effertz using card ending with ***(...3927) for GIP 262.02 in account ***54032552"`; +exports[`finance > 1337 > transactionDescription 1`] = `"withdrawal transaction at Gottlieb and Sons using card ending with ***(...9477) for HUF 262.02 in account ***52971361"`; exports[`finance > 1337 > transactionType 1`] = `"withdrawal"`; diff --git a/test/modules/__snapshots__/food.spec.ts.snap b/test/modules/__snapshots__/food.spec.ts.snap index 5c3b894e44a..130f84029e7 100644 --- a/test/modules/__snapshots__/food.spec.ts.snap +++ b/test/modules/__snapshots__/food.spec.ts.snap @@ -2,9 +2,9 @@ exports[`food > 42 > adjective 1`] = `"golden"`; -exports[`food > 42 > description 1`] = `"A succulent venison steak, encased in a sour liquorice root crust, served with a side of bay leaves mashed broccoli."`; +exports[`food > 42 > description 1`] = `"A succulent quail steak, encased in a crunchy anise crust, served with a side of liquorice root mashed arugula."`; -exports[`food > 42 > dish 1`] = `"Caraway Seed-crusted Rabbit"`; +exports[`food > 42 > dish 1`] = `"Moses's Special Buckwheat Flour"`; exports[`food > 42 > ethnicCategory 1`] = `"Gujarati"`; @@ -20,9 +20,9 @@ exports[`food > 42 > vegetable 1`] = `"cos lettuce"`; exports[`food > 1211 > adjective 1`] = `"tender"`; -exports[`food > 1211 > description 1`] = `"Three tamari with capers, zucchini, onion, onion and rice paper. With a side of baked feijoa, and your choice of persimmon or slivered almonds."`; +exports[`food > 1211 > description 1`] = `"Three cherries with onion, pumpkin, parsnip, purple carrot and soy flour. With a side of baked prune, and your choice of cayenne or capsicum."`; -exports[`food > 1211 > dish 1`] = `"Lasagne"`; +exports[`food > 1211 > dish 1`] = `"Sushi"`; exports[`food > 1211 > ethnicCategory 1`] = `"Texan"`; @@ -38,9 +38,9 @@ exports[`food > 1211 > vegetable 1`] = `"sun dried tomatoes"`; exports[`food > 1337 > adjective 1`] = `"fluffy"`; -exports[`food > 1337 > description 1`] = `"A slow-roasted White-winged Scoter with a fluffy, moist exterior. Stuffed with dried apricot and covered in kiwi fruit sauce. Sides with carrot puree and wild turnips."`; +exports[`food > 1337 > description 1`] = `"A slow-roasted Black Oystercatcher with a fresh, fluffy exterior. Stuffed with orange and covered in fingerlime sauce. Sides with bok choy puree and wild english spinach."`; -exports[`food > 1337 > dish 1`] = `"Cauliflower-infused Ostrich"`; +exports[`food > 1337 > dish 1`] = `"Egyptian Dates Soup"`; exports[`food > 1337 > ethnicCategory 1`] = `"Czech"`; diff --git a/test/modules/__snapshots__/git.spec.ts.snap b/test/modules/__snapshots__/git.spec.ts.snap index 395a9f71869..3c8df2e21a3 100644 --- a/test/modules/__snapshots__/git.spec.ts.snap +++ b/test/modules/__snapshots__/git.spec.ts.snap @@ -1,130 +1,130 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`git > 42 > branch 1`] = `"array-transmit"`; +exports[`git > 42 > branch 1`] = `"array-parse"`; -exports[`git > 42 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 15:00:39 2019 +0800"`; +exports[`git > 42 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 15:00:39 2019 +1100"`; -exports[`git > 42 > commitDate > with only number refDate 1`] = `"Tue Dec 31 15:00:39 2019 +0800"`; +exports[`git > 42 > commitDate > with only number refDate 1`] = `"Tue Dec 31 15:00:39 2019 +1100"`; -exports[`git > 42 > commitDate > with only string refDate 1`] = `"Tue Dec 31 15:00:39 2019 +0800"`; +exports[`git > 42 > commitDate > with only string refDate 1`] = `"Tue Dec 31 15:00:39 2019 +1100"`; exports[`git > 42 > commitEntry > with only Date refDate 1`] = ` -"commit be4abdd39321ad7d3fe01ffce404f4d6db0906bd -Author: Gregg.Beahan45 -Date: Tue Dec 31 00:24:08 2019 +0300 +"commit ead331ddf0fc4446b96d368ab4bd1d31efb62f92 +Author: Jerome Vandervort +Date: Tue Dec 31 09:39:01 2019 +1100 -    connect auxiliary bus +    bypass digital protocol " `; exports[`git > 42 > commitEntry > with only number refDate 1`] = ` -"commit be4abdd39321ad7d3fe01ffce404f4d6db0906bd -Author: Gregg.Beahan45 -Date: Tue Dec 31 00:24:08 2019 +0300 +"commit ead331ddf0fc4446b96d368ab4bd1d31efb62f92 +Author: Jerome Vandervort +Date: Tue Dec 31 09:39:01 2019 +1100 -    connect auxiliary bus +    bypass digital protocol " `; exports[`git > 42 > commitEntry > with only string refDate 1`] = ` -"commit be4abdd39321ad7d3fe01ffce404f4d6db0906bd -Author: Gregg.Beahan45 -Date: Tue Dec 31 00:24:08 2019 +0300 +"commit ead331ddf0fc4446b96d368ab4bd1d31efb62f92 +Author: Jerome Vandervort +Date: Tue Dec 31 09:39:01 2019 +1100 -    connect auxiliary bus +    bypass digital protocol " `; -exports[`git > 42 > commitMessage 1`] = `"navigate neural capacitor"`; +exports[`git > 42 > commitMessage 1`] = `"navigate mobile monitor"`; -exports[`git > 42 > commitSha > noArgs 1`] = `"8be4abdd39321ad7d3fe01ffce404f4d6db0906b"`; +exports[`git > 42 > commitSha > noArgs 1`] = `"8ead331ddf0fc4446b96d368ab4bd1d31efb62f9"`; -exports[`git > 42 > commitSha > with length 7 1`] = `"8be4abd"`; +exports[`git > 42 > commitSha > with length 7 1`] = `"8ead331"`; -exports[`git > 42 > commitSha > with length 8 1`] = `"8be4abdd"`; +exports[`git > 42 > commitSha > with length 8 1`] = `"8ead331d"`; -exports[`git > 1211 > branch 1`] = `"capacitor-connect"`; +exports[`git > 1211 > branch 1`] = `"capacitor-reboot"`; -exports[`git > 1211 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 01:42:55 2019 +0000"`; +exports[`git > 1211 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 01:42:55 2019 +1000"`; -exports[`git > 1211 > commitDate > with only number refDate 1`] = `"Tue Dec 31 01:42:55 2019 +0000"`; +exports[`git > 1211 > commitDate > with only number refDate 1`] = `"Tue Dec 31 01:42:55 2019 +1000"`; -exports[`git > 1211 > commitDate > with only string refDate 1`] = `"Tue Dec 31 01:42:55 2019 +0000"`; +exports[`git > 1211 > commitDate > with only string refDate 1`] = `"Tue Dec 31 01:42:55 2019 +1000"`; exports[`git > 1211 > commitEntry > with only Date refDate 1`] = ` -"commit adb42f0e3f4a973fab0aeefce96dfcf49cd438df -Author: Imani Anderson -Date: Tue Dec 31 16:48:46 2019 -0700 +"commit d4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3fa +Author: Deion Durgan +Date: Tue Dec 31 12:51:43 2019 -0600 -    synthesize cross-platform firewall +    calculate optical bandwidth " `; exports[`git > 1211 > commitEntry > with only number refDate 1`] = ` -"commit adb42f0e3f4a973fab0aeefce96dfcf49cd438df -Author: Imani Anderson -Date: Tue Dec 31 16:48:46 2019 -0700 +"commit d4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3fa +Author: Deion Durgan +Date: Tue Dec 31 12:51:43 2019 -0600 -    synthesize cross-platform firewall +    calculate optical bandwidth " `; exports[`git > 1211 > commitEntry > with only string refDate 1`] = ` -"commit adb42f0e3f4a973fab0aeefce96dfcf49cd438df -Author: Imani Anderson -Date: Tue Dec 31 16:48:46 2019 -0700 +"commit d4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3fa +Author: Deion Durgan +Date: Tue Dec 31 12:51:43 2019 -0600 -    synthesize cross-platform firewall +    calculate optical bandwidth " `; -exports[`git > 1211 > commitMessage 1`] = `"reboot online circuit"`; +exports[`git > 1211 > commitMessage 1`] = `"reboot solid state program"`; -exports[`git > 1211 > commitSha > noArgs 1`] = `"eadb42f0e3f4a973fab0aeefce96dfcf49cd438d"`; +exports[`git > 1211 > commitSha > noArgs 1`] = `"ed4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3f"`; -exports[`git > 1211 > commitSha > with length 7 1`] = `"eadb42f"`; +exports[`git > 1211 > commitSha > with length 7 1`] = `"ed4fefa"`; -exports[`git > 1211 > commitSha > with length 8 1`] = `"eadb42f0"`; +exports[`git > 1211 > commitSha > with length 8 1`] = `"ed4fefa7"`; -exports[`git > 1337 > branch 1`] = `"port-quantify"`; +exports[`git > 1337 > branch 1`] = `"port-hack"`; -exports[`git > 1337 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 17:42:40 2019 +0200"`; +exports[`git > 1337 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 17:42:40 2019 -0800"`; -exports[`git > 1337 > commitDate > with only number refDate 1`] = `"Tue Dec 31 17:42:40 2019 +0200"`; +exports[`git > 1337 > commitDate > with only number refDate 1`] = `"Tue Dec 31 17:42:40 2019 -0800"`; -exports[`git > 1337 > commitDate > with only string refDate 1`] = `"Tue Dec 31 17:42:40 2019 +0200"`; +exports[`git > 1337 > commitDate > with only string refDate 1`] = `"Tue Dec 31 17:42:40 2019 -0800"`; exports[`git > 1337 > commitEntry > with only Date refDate 1`] = ` -"commit c346ba075bd57f5a62b82d72af39cbbb07a98cba -Author: Miss Friedrich Krajcik -Date: Tue Dec 31 02:27:22 2019 +0100 +"commit 36a7b5fa28d2f9bb79ca46ea394bc4f9bb0af328 +Author: Matt_Hills +Date: Tue Dec 31 23:39:16 2019 -0900 -    reboot neural pixel +    reboot mobile sensor " `; exports[`git > 1337 > commitEntry > with only number refDate 1`] = ` -"commit c346ba075bd57f5a62b82d72af39cbbb07a98cba -Author: Miss Friedrich Krajcik -Date: Tue Dec 31 02:27:22 2019 +0100 +"commit 36a7b5fa28d2f9bb79ca46ea394bc4f9bb0af328 +Author: Matt_Hills +Date: Tue Dec 31 23:39:16 2019 -0900 -    reboot neural pixel +    reboot mobile sensor " `; exports[`git > 1337 > commitEntry > with only string refDate 1`] = ` -"commit c346ba075bd57f5a62b82d72af39cbbb07a98cba -Author: Miss Friedrich Krajcik -Date: Tue Dec 31 02:27:22 2019 +0100 +"commit 36a7b5fa28d2f9bb79ca46ea394bc4f9bb0af328 +Author: Matt_Hills +Date: Tue Dec 31 23:39:16 2019 -0900 -    reboot neural pixel +    reboot mobile sensor " `; -exports[`git > 1337 > commitMessage 1`] = `"compress multi-byte panel"`; +exports[`git > 1337 > commitMessage 1`] = `"compress back-end port"`; -exports[`git > 1337 > commitSha > noArgs 1`] = `"5c346ba075bd57f5a62b82d72af39cbbb07a98cb"`; +exports[`git > 1337 > commitSha > noArgs 1`] = `"536a7b5fa28d2f9bb79ca46ea394bc4f9bb0af32"`; -exports[`git > 1337 > commitSha > with length 7 1`] = `"5c346ba"`; +exports[`git > 1337 > commitSha > with length 7 1`] = `"536a7b5"`; -exports[`git > 1337 > commitSha > with length 8 1`] = `"5c346ba0"`; +exports[`git > 1337 > commitSha > with length 8 1`] = `"536a7b5f"`; diff --git a/test/modules/__snapshots__/hacker.spec.ts.snap b/test/modules/__snapshots__/hacker.spec.ts.snap index d36739fe5bf..c0b684c3a82 100644 --- a/test/modules/__snapshots__/hacker.spec.ts.snap +++ b/test/modules/__snapshots__/hacker.spec.ts.snap @@ -8,7 +8,7 @@ exports[`hacker > 42 > ingverb 1`] = `"copying"`; exports[`hacker > 42 > noun 1`] = `"array"`; -exports[`hacker > 42 > phrase 1`] = `"Try to transmit the TCP microchip, maybe it will quantify the mobile monitor!"`; +exports[`hacker > 42 > phrase 1`] = `"Try to hack the VGA pixel, maybe it will bypass the 1080p panel!"`; exports[`hacker > 42 > verb 1`] = `"navigate"`; @@ -20,7 +20,7 @@ exports[`hacker > 1211 > ingverb 1`] = `"programming"`; exports[`hacker > 1211 > noun 1`] = `"capacitor"`; -exports[`hacker > 1211 > phrase 1`] = `"I'll back up the neural JSON program, that should panel the USB matrix!"`; +exports[`hacker > 1211 > phrase 1`] = `"I'll navigate the mobile USB feed, that should feed the DRAM application!"`; exports[`hacker > 1211 > verb 1`] = `"reboot"`; @@ -32,6 +32,6 @@ exports[`hacker > 1337 > ingverb 1`] = `"compressing"`; exports[`hacker > 1337 > noun 1`] = `"port"`; -exports[`hacker > 1337 > phrase 1`] = `"Try to generate the RAM program, maybe it will connect the back-end port!"`; +exports[`hacker > 1337 > phrase 1`] = `"Try to generate the COM sensor, maybe it will compress the virtual card!"`; exports[`hacker > 1337 > verb 1`] = `"compress"`; diff --git a/test/modules/__snapshots__/helpers.spec.ts.snap b/test/modules/__snapshots__/helpers.spec.ts.snap index 63c7513f778..af17437ad3b 100644 --- a/test/modules/__snapshots__/helpers.spec.ts.snap +++ b/test/modules/__snapshots__/helpers.spec.ts.snap @@ -4,26 +4,26 @@ exports[`helpers > 42 > arrayElement > with array 1`] = `"o"`; exports[`helpers > 42 > arrayElements > with array 1`] = ` [ - "r", - "W", - "e", "d", - "l", + "e", + " ", + "r", + "!", ] `; exports[`helpers > 42 > arrayElements > with array and count 1`] = ` [ - "l", - "r", + "o", + "d", "o", ] `; exports[`helpers > 42 > arrayElements > with array and count range 1`] = ` [ - "d", - "l", + "r", + "!", ] `; @@ -35,35 +35,35 @@ exports[`helpers > 42 > enumValue > with mixed enum 1`] = `1`; exports[`helpers > 42 > enumValue > with string enum 1`] = `"Brazil"`; -exports[`helpers > 42 > fake > with a dynamic template 1`] = `"my string: Cky2eiXX/J"`; +exports[`helpers > 42 > fake > with a dynamic template 1`] = `"my string: CyeX//&qXb"`; exports[`helpers > 42 > fake > with a static template 1`] = `"my test string"`; exports[`helpers > 42 > fake > with empty string 1`] = `""`; -exports[`helpers > 42 > fake > with multiple dynamic templates 1`] = `"Sandy"`; +exports[`helpers > 42 > fake > with multiple dynamic templates 1`] = `"Waterloo"`; exports[`helpers > 42 > fake > with multiple static templates 1`] = `"B"`; -exports[`helpers > 42 > fromRegExp > with case insensitive flag 1`] = `"D69b5622B0"`; +exports[`helpers > 42 > fromRegExp > with case insensitive flag 1`] = `"D952BBa724"`; -exports[`helpers > 42 > fromRegExp > with dynamic RegExp 1`] = `"1-7-A"`; +exports[`helpers > 42 > fromRegExp > with dynamic RegExp 1`] = `"1-9-A"`; -exports[`helpers > 42 > fromRegExp > with dynamic string 1`] = `"1-7-A"`; +exports[`helpers > 42 > fromRegExp > with dynamic string 1`] = `"1-9-A"`; exports[`helpers > 42 > fromRegExp > with negation 1`] = `"zzzzzzzzzz"`; -exports[`helpers > 42 > fromRegExp > with negation and case insensitive flag 1`] = `"XxzUwwuuUY"`; +exports[`helpers > 42 > fromRegExp > with negation and case insensitive flag 1`] = `"XzwuUU8yuv"`; -exports[`helpers > 42 > fromRegExp > with optional character 1`] = `"-9-"`; +exports[`helpers > 42 > fromRegExp > with optional character 1`] = `"-6-b"`; -exports[`helpers > 42 > fromRegExp > with optional repetition 1`] = `"AA-44-1b21aa4234bab4b1c10ad"`; +exports[`helpers > 42 > fromRegExp > with optional repetition 1`] = `"AA--2a4"`; -exports[`helpers > 42 > fromRegExp > with quantifier 1`] = `"AA-179C-2311b0"`; +exports[`helpers > 42 > fromRegExp > with quantifier 1`] = `"AA-1964-bba312"`; -exports[`helpers > 42 > fromRegExp > with quantifier ranges 1`] = `"AAA-9C6644-0baa03"`; +exports[`helpers > 42 > fromRegExp > with quantifier ranges 1`] = `"AAA-64CCA8-2a43bbb"`; -exports[`helpers > 42 > fromRegExp > with required repetition 1`] = `"AA-44-1b21aa4234bab4b1c10ada"`; +exports[`helpers > 42 > fromRegExp > with required repetition 1`] = `"AA-C-2a4"`; exports[`helpers > 42 > fromRegExp > with static RegExp 1`] = `"Hello World!"`; @@ -81,28 +81,28 @@ exports[`helpers > 42 > maybe > with value and probability 1`] = `undefined`; exports[`helpers > 42 > multiple > with method and count 1`] = ` [ - 3373557438480384, - 7174621373661184, - 8563273238577152, - 1652233682812928, - 6593215255805952, + 3373557479352566, + 8563273192166996, + 6593215287158609, + 5392236252703920, + 1405290981918817, ] `; exports[`helpers > 42 > multiple > with method and count range 1`] = ` [ - 7174621373661184, - 8563273238577152, - 1652233682812928, - 6593215255805952, + 8563273192166996, + 6593215287158609, + 5392236252703920, + 1405290981918817, ] `; exports[`helpers > 42 > multiple > with only method 1`] = ` [ - 3373557438480384, - 7174621373661184, - 8563273238577152, + 3373557479352566, + 8563273192166996, + 6593215287158609, ] `; @@ -131,71 +131,71 @@ exports[`helpers > 42 > regexpStyleStringParse > only symbols 1`] = `"###test2"` exports[`helpers > 42 > regexpStyleStringParse > some string 1`] = `"Hello !###test2"`; -exports[`helpers > 42 > replaceCreditCardSymbols > noArgs 1`] = `"6453-3791-7755-1410-0489"`; +exports[`helpers > 42 > replaceCreditCardSymbols > noArgs 1`] = `"6453-3975-1108-6709-8213"`; -exports[`helpers > 42 > replaceCreditCardSymbols > only symbols 1`] = `"7917-6-7563-4"`; +exports[`helpers > 42 > replaceCreditCardSymbols > only symbols 1`] = `"9751-6-1086-7"`; -exports[`helpers > 42 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+7*,..-;:_NaN"`; +exports[`helpers > 42 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+9*,..-;:_NaN"`; exports[`helpers > 42 > replaceSymbolWithNumber > noArgs 1`] = `""`; -exports[`helpers > 42 > replaceSymbolWithNumber > only symbols 1`] = `"47917"`; +exports[`helpers > 42 > replaceSymbolWithNumber > only symbols 1`] = `"49751"`; -exports[`helpers > 42 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+7*,..-;:_"`; +exports[`helpers > 42 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+9*,..-;:_"`; exports[`helpers > 42 > replaceSymbols > noArgs 1`] = `""`; -exports[`helpers > 42 > replaceSymbols > only symbols 1`] = `"3U17U5"`; +exports[`helpers > 42 > replaceSymbols > only symbols 1`] = `"3Y51EW"`; -exports[`helpers > 42 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=J\`+71,..-;:_"`; +exports[`helpers > 42 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=J\`+95,..-;:_"`; exports[`helpers > 42 > shuffle > with array 1`] = ` [ - "!", "W", - "d", - "H", + "r", "l", "l", - "o", - " ", - "e", + "!", + "H", "l", - "r", + "e", + " ", + "o", + "d", "o", ] `; exports[`helpers > 42 > shuffle > with array and inplace false 1`] = ` [ - "!", "W", - "d", - "H", + "r", "l", "l", - "o", - " ", - "e", + "!", + "H", "l", - "r", + "e", + " ", + "o", + "d", "o", ] `; exports[`helpers > 42 > shuffle > with array and inplace true 1`] = ` [ - "!", "W", - "d", - "H", + "r", "l", "l", - "o", - " ", - "e", + "!", + "H", "l", - "r", + "e", + " ", + "o", + "d", "o", ] `; @@ -206,9 +206,9 @@ exports[`helpers > 42 > slugify > some string 1`] = `"hello-world"`; exports[`helpers > 42 > uniqueArray > with array 1`] = ` [ - "H", "l", - "W", + "e", + "r", ] `; @@ -220,36 +220,36 @@ exports[`helpers > 1211 > arrayElement > with array 1`] = `"!"`; exports[`helpers > 1211 > arrayElements > with array 1`] = ` [ - "d", - "o", - "r", - "!", - "l", "H", - "W", "e", - "l", + "r", "o", "l", + "!", + "o", " ", + "W", + "l", + "l", + "d", ] `; exports[`helpers > 1211 > arrayElements > with array and count 1`] = ` [ - "r", - " ", + "l", + "l", "!", ] `; exports[`helpers > 1211 > arrayElements > with array and count range 1`] = ` [ - "e", + " ", + "W", "l", - "o", "l", - " ", + "d", ] `; @@ -261,35 +261,35 @@ exports[`helpers > 1211 > enumValue > with mixed enum 1`] = `"Bar"`; exports[`helpers > 1211 > enumValue > with string enum 1`] = `"United States of America"`; -exports[`helpers > 1211 > fake > with a dynamic template 1`] = `"my string: wKti5-}$_/"`; +exports[`helpers > 1211 > fake > with a dynamic template 1`] = `"my string: wt5}_\`hAal"`; exports[`helpers > 1211 > fake > with a static template 1`] = `"my test string"`; exports[`helpers > 1211 > fake > with empty string 1`] = `""`; -exports[`helpers > 1211 > fake > with multiple dynamic templates 1`] = `"La Crosse"`; +exports[`helpers > 1211 > fake > with multiple dynamic templates 1`] = `"The Villages"`; exports[`helpers > 1211 > fake > with multiple static templates 1`] = `"C"`; -exports[`helpers > 1211 > fromRegExp > with case insensitive flag 1`] = `"8086CB9A4B"`; +exports[`helpers > 1211 > fromRegExp > with case insensitive flag 1`] = `"88C9445D46"`; -exports[`helpers > 1211 > fromRegExp > with dynamic RegExp 1`] = `"8-2-A"`; +exports[`helpers > 1211 > fromRegExp > with dynamic RegExp 1`] = `"8-8-A"`; -exports[`helpers > 1211 > fromRegExp > with dynamic string 1`] = `"8-2-A"`; +exports[`helpers > 1211 > fromRegExp > with dynamic string 1`] = `"8-8-A"`; exports[`helpers > 1211 > fromRegExp > with negation 1`] = `"zzzzzzzzzz"`; -exports[`helpers > 1211 > fromRegExp > with negation and case insensitive flag 1`] = `"yYywV9z8vU"`; +exports[`helpers > 1211 > fromRegExp > with negation and case insensitive flag 1`] = `"yyVzvvwWvx"`; -exports[`helpers > 1211 > fromRegExp > with optional character 1`] = `"A--3"`; +exports[`helpers > 1211 > fromRegExp > with optional character 1`] = `"A-D-2"`; -exports[`helpers > 1211 > fromRegExp > with optional repetition 1`] = `"-D-"`; +exports[`helpers > 1211 > fromRegExp > with optional repetition 1`] = `"A-56-21"`; -exports[`helpers > 1211 > fromRegExp > with quantifier 1`] = `"AA-8286-cb4a2b"`; +exports[`helpers > 1211 > fromRegExp > with quantifier 1`] = `"AA-88D9-222d23"`; -exports[`helpers > 1211 > fromRegExp > with quantifier ranges 1`] = `"AAAAAA-86DB9-2b2b2d"`; +exports[`helpers > 1211 > fromRegExp > with quantifier ranges 1`] = `"AAAAAA-D95560-3213d33b"`; -exports[`helpers > 1211 > fromRegExp > with required repetition 1`] = `"A-DB-a"`; +exports[`helpers > 1211 > fromRegExp > with required repetition 1`] = `"A-D-2"`; exports[`helpers > 1211 > fromRegExp > with static RegExp 1`] = `"Hello World!"`; @@ -307,34 +307,34 @@ exports[`helpers > 1211 > maybe > with value and probability 1`] = `undefined`; exports[`helpers > 1211 > multiple > with method and count 1`] = ` [ - 8363366036799488, - 4134441414819840, - 8047677172350976, - 7010029022478336, - 2031760839802880, + 8363366038243348, + 8047677172150962, + 2031760796090808, + 8982492793493979, + 6052754546149918, ] `; exports[`helpers > 1211 > multiple > with method and count range 1`] = ` [ - 4134441414819840, - 8047677172350976, - 7010029022478336, - 2031760839802880, - 1169939440336896, - 8982492805595136, - 346135076012032, - 6052754548064256, - 1431911878623232, - 6168278875504640, + 8047677172150962, + 2031760796090808, + 8982492793493979, + 6052754546149918, + 6168278835146506, + 6882283339307904, + 3188826061611959, + 6251585130600839, + 7319276504492921, + 6921998649901472, ] `; exports[`helpers > 1211 > multiple > with only method 1`] = ` [ - 8363366036799488, - 4134441414819840, - 8047677172350976, + 8363366038243348, + 8047677172150962, + 2031760796090808, ] `; @@ -363,71 +363,71 @@ exports[`helpers > 1211 > regexpStyleStringParse > only symbols 1`] = `"###test5 exports[`helpers > 1211 > regexpStyleStringParse > some string 1`] = `"Hello !###test5"`; -exports[`helpers > 1211 > replaceCreditCardSymbols > noArgs 1`] = `"6453-9487-2190-6162-7434"`; +exports[`helpers > 1211 > replaceCreditCardSymbols > noArgs 1`] = `"6453-9829-6673-6876-8482"`; -exports[`helpers > 1211 > replaceCreditCardSymbols > only symbols 1`] = `"4872-9-1927-1"`; +exports[`helpers > 1211 > replaceCreditCardSymbols > only symbols 1`] = `"8296-9-6747-7"`; -exports[`helpers > 1211 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°9"§$%&/()=?\`+4*,..-;:_NaN"`; +exports[`helpers > 1211 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°9"§$%&/()=?\`+8*,..-;:_NaN"`; exports[`helpers > 1211 > replaceSymbolWithNumber > noArgs 1`] = `""`; -exports[`helpers > 1211 > replaceSymbolWithNumber > only symbols 1`] = `"94872"`; +exports[`helpers > 1211 > replaceSymbolWithNumber > only symbols 1`] = `"98296"`; -exports[`helpers > 1211 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°9"§$%&/()=?\`+4*,..-;:_"`; +exports[`helpers > 1211 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°9"§$%&/()=?\`+8*,..-;:_"`; exports[`helpers > 1211 > replaceSymbols > noArgs 1`] = `""`; -exports[`helpers > 1211 > replaceSymbols > only symbols 1`] = `"9L72D0"`; +exports[`helpers > 1211 > replaceSymbols > only symbols 1`] = `"9XZ6R3"`; -exports[`helpers > 1211 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=Y\`+47,..-;:_"`; +exports[`helpers > 1211 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=Y\`+8Z,..-;:_"`; exports[`helpers > 1211 > shuffle > with array 1`] = ` [ - "l", - "l", + "H", "o", "l", - "W", "d", - "H", "e", + "W", "o", - "r", " ", + "r", + "l", + "l", "!", ] `; exports[`helpers > 1211 > shuffle > with array and inplace false 1`] = ` [ - "l", - "l", + "H", "o", "l", - "W", "d", - "H", "e", + "W", "o", - "r", " ", + "r", + "l", + "l", "!", ] `; exports[`helpers > 1211 > shuffle > with array and inplace true 1`] = ` [ - "l", - "l", + "H", "o", "l", - "W", "d", - "H", "e", + "W", "o", - "r", " ", + "r", + "l", + "l", "!", ] `; @@ -438,9 +438,9 @@ exports[`helpers > 1211 > slugify > some string 1`] = `"hello-world"`; exports[`helpers > 1211 > uniqueArray > with array 1`] = ` [ - "W", - "d", - "l", + "r", + "H", + " ", ] `; @@ -453,24 +453,24 @@ exports[`helpers > 1337 > arrayElement > with array 1`] = `"l"`; exports[`helpers > 1337 > arrayElements > with array 1`] = ` [ "l", + "o", "l", "e", - "W", ] `; exports[`helpers > 1337 > arrayElements > with array and count 1`] = ` [ + "l", "e", - "W", "l", ] `; exports[`helpers > 1337 > arrayElements > with array and count range 1`] = ` [ + "l", "e", - "W", ] `; @@ -482,35 +482,35 @@ exports[`helpers > 1337 > enumValue > with mixed enum 1`] = `1`; exports[`helpers > 1337 > enumValue > with string enum 1`] = `"Brazil"`; -exports[`helpers > 1337 > fake > with a dynamic template 1`] = `"my string: 9U/4:SK$>6"`; +exports[`helpers > 1337 > fake > with a dynamic template 1`] = `"my string: 9/:K>Q9{e+"`; exports[`helpers > 1337 > fake > with a static template 1`] = `"my test string"`; exports[`helpers > 1337 > fake > with empty string 1`] = `""`; -exports[`helpers > 1337 > fake > with multiple dynamic templates 1`] = `"U/4:SK$>6Q"`; +exports[`helpers > 1337 > fake > with multiple dynamic templates 1`] = `"/:K>Q9{e+D"`; exports[`helpers > 1337 > fake > with multiple static templates 1`] = `"A"`; -exports[`helpers > 1337 > fromRegExp > with case insensitive flag 1`] = `"C2Bbc10AcC"`; +exports[`helpers > 1337 > fromRegExp > with case insensitive flag 1`] = `"CBc0c1C95B"`; -exports[`helpers > 1337 > fromRegExp > with dynamic RegExp 1`] = `"D-3-A"`; +exports[`helpers > 1337 > fromRegExp > with dynamic RegExp 1`] = `"D-C-A"`; -exports[`helpers > 1337 > fromRegExp > with dynamic string 1`] = `"D-3-A"`; +exports[`helpers > 1337 > fromRegExp > with dynamic string 1`] = `"D-C-A"`; exports[`helpers > 1337 > fromRegExp > with negation 1`] = `"zzzzzzzzzz"`; -exports[`helpers > 1337 > fromRegExp > with negation and case insensitive flag 1`] = `"VZUUVZY8WV"`; +exports[`helpers > 1337 > fromRegExp > with negation and case insensitive flag 1`] = `"VUVYWZVzw9"`; -exports[`helpers > 1337 > fromRegExp > with optional character 1`] = `"-C-"`; +exports[`helpers > 1337 > fromRegExp > with optional character 1`] = `"--"`; -exports[`helpers > 1337 > fromRegExp > with optional repetition 1`] = `"-A0-c"`; +exports[`helpers > 1337 > fromRegExp > with optional repetition 1`] = `"AAAAAAAA-B-"`; -exports[`helpers > 1337 > fromRegExp > with quantifier 1`] = `"AA-D3CC-c00acc"`; +exports[`helpers > 1337 > fromRegExp > with quantifier 1`] = `"AA-DCD2-c0c42b"`; -exports[`helpers > 1337 > fromRegExp > with quantifier ranges 1`] = `"AAA-CCD32-cc01cd"`; +exports[`helpers > 1337 > fromRegExp > with quantifier ranges 1`] = `"AAA-D203-42bd1b"`; -exports[`helpers > 1337 > fromRegExp > with required repetition 1`] = `"A-A0-cd"`; +exports[`helpers > 1337 > fromRegExp > with required repetition 1`] = `"AAAAAAAAA-6-4"`; exports[`helpers > 1337 > fromRegExp > with static RegExp 1`] = `"Hello World!"`; @@ -528,27 +528,27 @@ exports[`helpers > 1337 > maybe > with value and probability 1`] = `undefined`; exports[`helpers > 1337 > multiple > with method and count 1`] = ` [ - 2360108468142080, - 5048803172286464, - 1429298200182784, - 1914819313664000, - 2505140957347840, + 2360108457524098, + 1429298155729043, + 2505140979113303, + 4137158724208997, + 2891315829344705, ] `; exports[`helpers > 1337 > multiple > with method and count range 1`] = ` [ - 5048803172286464, - 1429298200182784, - 1914819313664000, + 1429298155729043, + 2505140979113303, + 4137158724208997, ] `; exports[`helpers > 1337 > multiple > with only method 1`] = ` [ - 2360108468142080, - 5048803172286464, - 1429298200182784, + 2360108457524098, + 1429298155729043, + 2505140979113303, ] `; @@ -577,37 +577,37 @@ exports[`helpers > 1337 > regexpStyleStringParse > only symbols 1`] = `"###test2 exports[`helpers > 1337 > regexpStyleStringParse > some string 1`] = `"Hello !###test2"`; -exports[`helpers > 1337 > replaceCreditCardSymbols > noArgs 1`] = `"6453-2512-2540-3255-2399"`; +exports[`helpers > 1337 > replaceCreditCardSymbols > noArgs 1`] = `"6453-2124-3529-7136-1945"`; -exports[`helpers > 1337 > replaceCreditCardSymbols > only symbols 1`] = `"5122-5-5424-8"`; +exports[`helpers > 1337 > replaceCreditCardSymbols > only symbols 1`] = `"1243-5-5297-1"`; -exports[`helpers > 1337 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+5*,..-;:_NaN"`; +exports[`helpers > 1337 > replaceCreditCardSymbols > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+1*,..-;:_NaN"`; exports[`helpers > 1337 > replaceSymbolWithNumber > noArgs 1`] = `""`; -exports[`helpers > 1337 > replaceSymbolWithNumber > only symbols 1`] = `"45122"`; +exports[`helpers > 1337 > replaceSymbolWithNumber > only symbols 1`] = `"41243"`; -exports[`helpers > 1337 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+5*,..-;:_"`; +exports[`helpers > 1337 > replaceSymbolWithNumber > some string 1`] = `"^1234567890ß´°4"§$%&/()=?\`+1*,..-;:_"`; exports[`helpers > 1337 > replaceSymbols > noArgs 1`] = `""`; -exports[`helpers > 1337 > replaceSymbols > only symbols 1`] = `"2OF2OA"`; +exports[`helpers > 1337 > replaceSymbols > only symbols 1`] = `"2EL3NZ"`; -exports[`helpers > 1337 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=G\`+5F,..-;:_"`; +exports[`helpers > 1337 > replaceSymbols > some string 1`] = `"^1234567890ß´°!"§$%&/()=G\`+1L,..-;:_"`; exports[`helpers > 1337 > shuffle > with array 1`] = ` [ " ", - "d", - "o", - "r", + "W", "H", "o", + "r", + "d", "!", "l", + "o", "l", "e", - "W", "l", ] `; @@ -615,16 +615,16 @@ exports[`helpers > 1337 > shuffle > with array 1`] = ` exports[`helpers > 1337 > shuffle > with array and inplace false 1`] = ` [ " ", - "d", - "o", - "r", + "W", "H", "o", + "r", + "d", "!", "l", + "o", "l", "e", - "W", "l", ] `; @@ -632,16 +632,16 @@ exports[`helpers > 1337 > shuffle > with array and inplace false 1`] = ` exports[`helpers > 1337 > shuffle > with array and inplace true 1`] = ` [ " ", - "d", - "o", - "r", + "W", "H", "o", + "r", + "d", "!", "l", + "o", "l", "e", - "W", "l", ] `; @@ -653,8 +653,8 @@ exports[`helpers > 1337 > slugify > some string 1`] = `"hello-world"`; exports[`helpers > 1337 > uniqueArray > with array 1`] = ` [ "o", + " ", "H", - "d", ] `; diff --git a/test/modules/__snapshots__/image.spec.ts.snap b/test/modules/__snapshots__/image.spec.ts.snap index a7f478e7273..887bb84a261 100644 --- a/test/modules/__snapshots__/image.spec.ts.snap +++ b/test/modules/__snapshots__/image.spec.ts.snap @@ -1,229 +1,229 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`image > 42 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/995.jpg"`; +exports[`image > 42 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1188.jpg"`; -exports[`image > 42 > avatarGitHub 1`] = `"https://avatars.githubusercontent.com/u/37454011"`; +exports[`image > 42 > avatarGitHub 1`] = `"https://avatars.githubusercontent.com/u/37454012"`; exports[`image > 42 > avatarLegacy 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/468.jpg"`; -exports[`image > 42 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjMxODYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNlNGFiZGQiLz48dGV4dCB4PSI3NDkiIHk9IjE1OTMiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzMTg2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 42 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjM4MDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNhZDMzMWQiLz48dGV4dCB4PSI3NDkiIHk9IjE5MDEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzODAyPC90ZXh0Pjwvc3ZnPg=="`; exports[`image > 42 > dataUri > with all options+base64 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzMzciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM2NDMyMTgiLz48dGV4dCB4PSIxIiB5PSI2NjguNSIgZm9udC1zaXplPSIyMCIgYWxpZ25tZW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IndoaXRlIj4yeDEzMzc8L3RleHQ+PC9zdmc+"`; exports[`image > 42 > dataUri > with all options+uri 1`] = `"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%2242%22%20height%3D%22314%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22red%22%2F%3E%3Ctext%20x%3D%2221%22%20y%3D%22157%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E42x314%3C%2Ftext%3E%3C%2Fsvg%3E"`; -exports[`image > 42 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjMxODYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsdWUiLz48dGV4dCB4PSI3NDkiIHk9IjE1OTMiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzMTg2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 42 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjM4MDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsdWUiLz48dGV4dCB4PSI3NDkiIHk9IjE5MDEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzODAyPC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 42 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2JlNGFiZCIvPjx0ZXh0IHg9Ijc0OSIgeT0iNjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgxMjg8L3RleHQ+PC9zdmc+"`; +exports[`image > 42 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2VhZDMzMSIvPjx0ZXh0IHg9Ijc0OSIgeT0iNjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgxMjg8L3RleHQ+PC9zdmc+"`; -exports[`image > 42 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjMxODYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNlNGFiZGQiLz48dGV4dCB4PSI3NDkiIHk9IjE1OTMiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzMTg2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 42 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxNDk4IiBoZWlnaHQ9IjM4MDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNhZDMzMWQiLz48dGV4dCB4PSI3NDkiIHk9IjE5MDEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTQ5OHgzODAyPC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 42 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTQ5OCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2JlNGFiZCIvPjx0ZXh0IHg9IjY0IiB5PSI3NDkiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTI4eDE0OTg8L3RleHQ+PC9zdmc+"`; +exports[`image > 42 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTQ5OCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2VhZDMzMSIvPjx0ZXh0IHg9IjY0IiB5PSI3NDkiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTI4eDE0OTg8L3RleHQ+PC9zdmc+"`; -exports[`image > 42 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjOGJlNGFiIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; +exports[`image > 42 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjOGVhZDMzIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; -exports[`image > 42 > url > noArgs 1`] = `"https://picsum.photos/seed/JMBB9r/1498/3186"`; +exports[`image > 42 > url > noArgs 1`] = `"https://picsum.photos/seed/993RBH1Y/1498/3802"`; -exports[`image > 42 > url > with height 1`] = `"https://picsum.photos/seed/bJMBB9r963/1498/128"`; +exports[`image > 42 > url > with height 1`] = `"https://picsum.photos/seed/B993RBH1Y/1498/128"`; -exports[`image > 42 > url > with width 1`] = `"https://picsum.photos/seed/bJMBB9r963/128/1498"`; +exports[`image > 42 > url > with width 1`] = `"https://picsum.photos/seed/B993RBH1Y/128/1498"`; -exports[`image > 42 > url > with width and height 1`] = `"https://loremflickr.com/128/128?lock=7174621373661184"`; +exports[`image > 42 > url > with width and height 1`] = `"https://loremflickr.com/128/128?lock=8563273192166996"`; -exports[`image > 42 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/1498/3186?lock=8563273238577152"`; +exports[`image > 42 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/1498/3802?lock=6593215287158609"`; -exports[`image > 42 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=3373557438480384"`; +exports[`image > 42 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=3373557479352566"`; -exports[`image > 42 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/1498/3186/cats?lock=8563273238577152"`; +exports[`image > 42 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/1498/3802/cats?lock=6593215287158609"`; -exports[`image > 42 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/1498/128?lock=7174621373661184"`; +exports[`image > 42 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/1498/128?lock=8563273192166996"`; -exports[`image > 42 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/1498?lock=7174621373661184"`; +exports[`image > 42 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/1498?lock=8563273192166996"`; -exports[`image > 42 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=3373557438480384"`; +exports[`image > 42 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=3373557479352566"`; -exports[`image > 42 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/MBB9r963s/1498/3186?blur=2"`; +exports[`image > 42 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/93RBH/1498/3802?blur=6"`; -exports[`image > 42 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/NWbJMBB/128/128?grayscale&blur=4"`; +exports[`image > 42 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/WJB993R/128/128?grayscale&blur=4"`; -exports[`image > 42 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/JMBB9r/1498/3186?blur=6"`; +exports[`image > 42 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/993RBH1Y/1498/3802?blur=6"`; -exports[`image > 42 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/bJMBB9r963/1498/3186?grayscale&blur=3"`; +exports[`image > 42 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/B993RBH1Y/1498/3802?grayscale&blur=3"`; -exports[`image > 42 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/JMBB9r/1498/128?blur=10"`; +exports[`image > 42 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/993RBH1Y/1498/128?blur=8"`; -exports[`image > 42 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/JMBB9r/128/1498?blur=10"`; +exports[`image > 42 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/993RBH1Y/128/1498?blur=8"`; -exports[`image > 42 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/bJMBB9r963/128/128?grayscale&blur=8"`; +exports[`image > 42 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/B993RBH1Y/128/128?grayscale&blur=10"`; -exports[`image > 42 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/1498x3186/e4abdd/39321a.webp?text=concido%20paulatim%20aranea"`; +exports[`image > 42 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/1498x3802/ad331d/df0fc4.gif?text=auctus%20cognomen%20esse"`; exports[`image > 42 > urlPlaceholder > with all options 1`] = `"https://via.placeholder.com/128x128/FF0000/0000FF.png?text=hello"`; -exports[`image > 42 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/1498x3186/FF0000/e4abdd.gif?text=decumbo%20armarium%20alveus"`; +exports[`image > 42 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/1498x3802/FF0000/ad331d.png?text=suggero%20accusator%20volubilis"`; exports[`image > 42 > urlPlaceholder > with empty colors and text 1`] = `"https://via.placeholder.com/128x128//.png?text="`; -exports[`image > 42 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/1498x3186/e4abdd/39321a.webp?text=usitas%20concido%20paulatim"`; +exports[`image > 42 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/1498x3802/ad331d/df0fc4.webp?text=attonbitus%20auctus%20cognomen"`; -exports[`image > 42 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/1498x128/be4abd/d39321.jpg?text=usitas%20concido%20paulatim"`; +exports[`image > 42 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/1498x128/ead331/ddf0fc.jpeg?text=attonbitus%20auctus%20cognomen"`; -exports[`image > 42 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/1498x3186/e4abdd/39321a.webp?text=Hello"`; +exports[`image > 42 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/1498x3802/ad331d/df0fc4.gif?text=Hello"`; -exports[`image > 42 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/1498x3186/e4abdd/0000FF.gif?text=decumbo%20armarium%20alveus"`; +exports[`image > 42 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/1498x3802/ad331d/0000FF.png?text=suggero%20accusator%20volubilis"`; -exports[`image > 42 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x1498/be4abd/d39321.jpg?text=usitas%20concido%20paulatim"`; +exports[`image > 42 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x1498/ead331/ddf0fc.jpeg?text=attonbitus%20auctus%20cognomen"`; -exports[`image > 42 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/8be4ab/dd3932.gif?text=degenero%20usitas%20concido"`; +exports[`image > 42 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/8ead33/1ddf0f.webp?text=benevolentia%20attonbitus%20auctus"`; -exports[`image > 1211 > avatar 1`] = `"https://avatars.githubusercontent.com/u/45901520"`; +exports[`image > 1211 > avatar 1`] = `"https://avatars.githubusercontent.com/u/89347165"`; exports[`image > 1211 > avatarGitHub 1`] = `"https://avatars.githubusercontent.com/u/92852016"`; exports[`image > 1211 > avatarLegacy 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1160.jpg"`; -exports[`image > 1211 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjE4MzYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNkYjQyZjAiLz48dGV4dCB4PSIxODU3IiB5PSI5MTgiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgxODM2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1211 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjM1NzMiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM0ZmVmYTciLz48dGV4dCB4PSIxODU3IiB5PSIxNzg2LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgzNTczPC90ZXh0Pjwvc3ZnPg=="`; exports[`image > 1211 > dataUri > with all options+base64 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzMzciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM2NDMyMTgiLz48dGV4dCB4PSIxIiB5PSI2NjguNSIgZm9udC1zaXplPSIyMCIgYWxpZ25tZW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IndoaXRlIj4yeDEzMzc8L3RleHQ+PC9zdmc+"`; exports[`image > 1211 > dataUri > with all options+uri 1`] = `"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%2242%22%20height%3D%22314%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22red%22%2F%3E%3Ctext%20x%3D%2221%22%20y%3D%22157%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E42x314%3C%2Ftext%3E%3C%2Fsvg%3E"`; -exports[`image > 1211 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjE4MzYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsdWUiLz48dGV4dCB4PSIxODU3IiB5PSI5MTgiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgxODM2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1211 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjM1NzMiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsdWUiLz48dGV4dCB4PSIxODU3IiB5PSIxNzg2LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgzNTczPC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 1211 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2FkYjQyZiIvPjx0ZXh0IHg9IjE4NTciIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjM3MTR4MTI4PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1211 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2Q0ZmVmYSIvPjx0ZXh0IHg9IjE4NTciIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjM3MTR4MTI4PC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 1211 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjE4MzYiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNkYjQyZjAiLz48dGV4dCB4PSIxODU3IiB5PSI5MTgiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgxODM2PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1211 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzNzE0IiBoZWlnaHQ9IjM1NzMiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM0ZmVmYTciLz48dGV4dCB4PSIxODU3IiB5PSIxNzg2LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MzcxNHgzNTczPC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 1211 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMzcxNCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2FkYjQyZiIvPjx0ZXh0IHg9IjY0IiB5PSIxODU3IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgzNzE0PC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1211 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMzcxNCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2Q0ZmVmYSIvPjx0ZXh0IHg9IjY0IiB5PSIxODU3IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgzNzE0PC90ZXh0Pjwvc3ZnPg=="`; -exports[`image > 1211 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZWFkYjQyIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; +exports[`image > 1211 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZWQ0ZmVmIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; -exports[`image > 1211 > url > noArgs 1`] = `"https://picsum.photos/seed/d8Z2F9GdL/3714/1836"`; +exports[`image > 1211 > url > noArgs 1`] = `"https://loremflickr.com/3714/3573?lock=8982492793493979"`; -exports[`image > 1211 > url > with height 1`] = `"https://loremflickr.com/3714/128?lock=8047677172350976"`; +exports[`image > 1211 > url > with height 1`] = `"https://picsum.photos/seed/ZFGLlH/3714/128"`; -exports[`image > 1211 > url > with width 1`] = `"https://loremflickr.com/128/3714?lock=8047677172350976"`; +exports[`image > 1211 > url > with width 1`] = `"https://picsum.photos/seed/ZFGLlH/128/3714"`; -exports[`image > 1211 > url > with width and height 1`] = `"https://picsum.photos/seed/TMd8Z2F/128/128"`; +exports[`image > 1211 > url > with width and height 1`] = `"https://picsum.photos/seed/dZFGLlHOLE/128/128"`; -exports[`image > 1211 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/3714/1836?lock=8047677172350976"`; +exports[`image > 1211 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/3714/3573?lock=2031760796090808"`; -exports[`image > 1211 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=8363366036799488"`; +exports[`image > 1211 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=8363366038243348"`; -exports[`image > 1211 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/3714/1836/cats?lock=8047677172350976"`; +exports[`image > 1211 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/3714/3573/cats?lock=2031760796090808"`; -exports[`image > 1211 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/3714/128?lock=4134441414819840"`; +exports[`image > 1211 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/3714/128?lock=8047677172150962"`; -exports[`image > 1211 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/3714?lock=4134441414819840"`; +exports[`image > 1211 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/3714?lock=8047677172150962"`; -exports[`image > 1211 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=8363366036799488"`; +exports[`image > 1211 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=8363366038243348"`; -exports[`image > 1211 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/8Z2F9G/3714/1836?blur=8"`; +exports[`image > 1211 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/GLlHOLEPq/3714/3573?grayscale&blur=10"`; -exports[`image > 1211 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/sTMd8Z2F9G/128/128?grayscale&blur=4"`; +exports[`image > 1211 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/TdZFGLlHOL/128/128?grayscale&blur=4"`; -exports[`image > 1211 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/d8Z2F9GdL/3714/1836?blur=6"`; +exports[`image > 1211 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/FGLlHOLEPq/3714/3573?grayscale&blur=6"`; -exports[`image > 1211 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/Md8Z2F9GdL/3714/1836?grayscale&blur=3"`; +exports[`image > 1211 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/ZFGLlH/3714/3573?grayscale&blur=3"`; -exports[`image > 1211 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/d8Z2F9GdL/3714/128?grayscale&blur=9"`; +exports[`image > 1211 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/FGLlHOLEPq/3714/128?blur=2"`; -exports[`image > 1211 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/d8Z2F9GdL/128/3714?grayscale&blur=9"`; +exports[`image > 1211 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/FGLlHOLEPq/128/3714?blur=2"`; -exports[`image > 1211 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/Md8Z2F9GdL/128/128?blur=5"`; +exports[`image > 1211 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/ZFGLlH/128/128?blur=9"`; -exports[`image > 1211 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/3714x1836/db42f0/e3f4a9.jpeg?text=ascit%20suasoria%20tamisium"`; +exports[`image > 1211 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/3714x3573/4fefa7/fbaec9.webp?text=unde%20blanditiis%20officia"`; exports[`image > 1211 > urlPlaceholder > with all options 1`] = `"https://via.placeholder.com/128x128/FF0000/0000FF.png?text=hello"`; -exports[`image > 1211 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/3714x1836/FF0000/db42f0.png?text=articulus%20stillicidium%20bene"`; +exports[`image > 1211 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/3714x3573/FF0000/4fefa7.png?text=tonsor%20tenuis%20sollers"`; exports[`image > 1211 > urlPlaceholder > with empty colors and text 1`] = `"https://via.placeholder.com/128x128//.png?text="`; -exports[`image > 1211 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/3714x1836/db42f0/e3f4a9.webp?text=considero%20ascit%20suasoria"`; +exports[`image > 1211 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/3714x3573/4fefa7/fbaec9.webp?text=usque%20unde%20blanditiis"`; -exports[`image > 1211 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/3714x128/adb42f/0e3f4a.jpg?text=considero%20ascit%20suasoria"`; +exports[`image > 1211 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/3714x128/d4fefa/7fbaec.jpg?text=usque%20unde%20blanditiis"`; -exports[`image > 1211 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/3714x1836/db42f0/e3f4a9.jpeg?text=Hello"`; +exports[`image > 1211 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/3714x3573/4fefa7/fbaec9.webp?text=Hello"`; -exports[`image > 1211 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/3714x1836/db42f0/0000FF.png?text=articulus%20stillicidium%20bene"`; +exports[`image > 1211 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/3714x3573/4fefa7/0000FF.png?text=tonsor%20tenuis%20sollers"`; -exports[`image > 1211 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x3714/adb42f/0e3f4a.jpg?text=considero%20ascit%20suasoria"`; +exports[`image > 1211 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x3714/d4fefa/7fbaec.jpg?text=usque%20unde%20blanditiis"`; -exports[`image > 1211 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/eadb42/f0e3f4.png?text=curiositas%20considero%20ascit"`; +exports[`image > 1211 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/ed4fef/a7fbae.webp?text=dapifer%20usque%20unde"`; -exports[`image > 1337 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/700.jpg"`; +exports[`image > 1337 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/198.jpg"`; exports[`image > 1337 > avatarGitHub 1`] = `"https://avatars.githubusercontent.com/u/26202467"`; exports[`image > 1337 > avatarLegacy 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/327.jpg"`; -exports[`image > 1337 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjIyNDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMzNDZiYTAiLz48dGV4dCB4PSI1MjQiIHk9IjExMjEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHgyMjQyPC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1337 > dataUri > noArgs 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjYzNSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzZhN2I1ZiIvPjx0ZXh0IHg9IjUyNCIgeT0iMzE3LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHg2MzU8L3RleHQ+PC9zdmc+"`; exports[`image > 1337 > dataUri > with all options+base64 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzMzciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiM2NDMyMTgiLz48dGV4dCB4PSIxIiB5PSI2NjguNSIgZm9udC1zaXplPSIyMCIgYWxpZ25tZW50LWJhc2VsaW5lPSJtaWRkbGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGZpbGw9IndoaXRlIj4yeDEzMzc8L3RleHQ+PC9zdmc+"`; exports[`image > 1337 > dataUri > with all options+uri 1`] = `"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%2242%22%20height%3D%22314%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22red%22%2F%3E%3Ctext%20x%3D%2221%22%20y%3D%22157%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E42x314%3C%2Ftext%3E%3C%2Fsvg%3E"`; -exports[`image > 1337 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjIyNDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsdWUiLz48dGV4dCB4PSI1MjQiIHk9IjExMjEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHgyMjQyPC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1337 > dataUri > with color 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjYzNSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iYmx1ZSIvPjx0ZXh0IHg9IjUyNCIgeT0iMzE3LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHg2MzU8L3RleHQ+PC9zdmc+"`; -exports[`image > 1337 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2MzNDZiYSIvPjx0ZXh0IHg9IjUyNCIgeT0iNjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHgxMjg8L3RleHQ+PC9zdmc+"`; +exports[`image > 1337 > dataUri > with height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjEyOCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzM2YTdiNSIvPjx0ZXh0IHg9IjUyNCIgeT0iNjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHgxMjg8L3RleHQ+PC9zdmc+"`; -exports[`image > 1337 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjIyNDIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMzNDZiYTAiLz48dGV4dCB4PSI1MjQiIHk9IjExMjEiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHgyMjQyPC90ZXh0Pjwvc3ZnPg=="`; +exports[`image > 1337 > dataUri > with type 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMDQ4IiBoZWlnaHQ9IjYzNSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzZhN2I1ZiIvPjx0ZXh0IHg9IjUyNCIgeT0iMzE3LjUiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTA0OHg2MzU8L3RleHQ+PC9zdmc+"`; -exports[`image > 1337 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTA0OCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2MzNDZiYSIvPjx0ZXh0IHg9IjY0IiB5PSI1MjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTI4eDEwNDg8L3RleHQ+PC9zdmc+"`; +exports[`image > 1337 > dataUri > with width 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTA0OCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzM2YTdiNSIvPjx0ZXh0IHg9IjY0IiB5PSI1MjQiIGZvbnQtc2l6ZT0iMjAiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBmaWxsPSJ3aGl0ZSI+MTI4eDEwNDg8L3RleHQ+PC9zdmc+"`; -exports[`image > 1337 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjNWMzNDZiIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; +exports[`image > 1337 > dataUri > with width and height 1`] = `"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4Ij48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjNTM2YTdiIi8+PHRleHQgeD0iNjQiIHk9IjY0IiBmb250LXNpemU9IjIwIiBhbGlnbm1lbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZmlsbD0id2hpdGUiPjEyOHgxMjg8L3RleHQ+PC9zdmc+"`; -exports[`image > 1337 > url > noArgs 1`] = `"https://loremflickr.com/1048/2242?lock=1914819313664000"`; +exports[`image > 1337 > url > noArgs 1`] = `"https://loremflickr.com/1048/635?lock=4137158724208997"`; -exports[`image > 1337 > url > with height 1`] = `"https://picsum.photos/seed/dhxs2/1048/128"`; +exports[`image > 1337 > url > with height 1`] = `"https://loremflickr.com/1048/128?lock=2505140979113303"`; -exports[`image > 1337 > url > with width 1`] = `"https://picsum.photos/seed/dhxs2/128/1048"`; +exports[`image > 1337 > url > with width 1`] = `"https://loremflickr.com/128/1048?lock=2505140979113303"`; -exports[`image > 1337 > url > with width and height 1`] = `"https://loremflickr.com/128/128?lock=5048803172286464"`; +exports[`image > 1337 > url > with width and height 1`] = `"https://loremflickr.com/128/128?lock=1429298155729043"`; -exports[`image > 1337 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/1048/2242?lock=1429298200182784"`; +exports[`image > 1337 > urlLoremFlickr > noArgs 1`] = `"https://loremflickr.com/1048/635?lock=2505140979113303"`; -exports[`image > 1337 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=2360108468142080"`; +exports[`image > 1337 > urlLoremFlickr > with all options 1`] = `"https://loremflickr.com/128/128/cats?lock=2360108457524098"`; -exports[`image > 1337 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/1048/2242/cats?lock=1429298200182784"`; +exports[`image > 1337 > urlLoremFlickr > with category 1`] = `"https://loremflickr.com/1048/635/cats?lock=2505140979113303"`; -exports[`image > 1337 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/1048/128?lock=5048803172286464"`; +exports[`image > 1337 > urlLoremFlickr > with height 1`] = `"https://loremflickr.com/1048/128?lock=1429298155729043"`; -exports[`image > 1337 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/1048?lock=5048803172286464"`; +exports[`image > 1337 > urlLoremFlickr > with width 1`] = `"https://loremflickr.com/128/1048?lock=1429298155729043"`; -exports[`image > 1337 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=2360108468142080"`; +exports[`image > 1337 > urlLoremFlickr > with width and height 1`] = `"https://loremflickr.com/128/128?lock=2360108457524098"`; -exports[`image > 1337 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/xs2jew/1048/2242?grayscale&blur=2"`; +exports[`image > 1337 > urlPicsumPhotos > noArgs 1`] = `"https://picsum.photos/seed/wgYJ7n/1048/635?grayscale&blur=5"`; -exports[`image > 1337 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/y9dhxs/128/128?grayscale&blur=4"`; +exports[`image > 1337 > urlPicsumPhotos > with all options 1`] = `"https://picsum.photos/seed/9hsjwg/128/128?grayscale&blur=4"`; -exports[`image > 1337 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/hxs2je/1048/2242?grayscale&blur=6"`; +exports[`image > 1337 > urlPicsumPhotos > with blur 1`] = `"https://picsum.photos/seed/jwgYJ7n/1048/635?grayscale&blur=6"`; -exports[`image > 1337 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/dhxs2/1048/2242?grayscale&blur=3"`; +exports[`image > 1337 > urlPicsumPhotos > with blur and grayscale 1`] = `"https://picsum.photos/seed/sjwgYJ/1048/635?grayscale&blur=3"`; -exports[`image > 1337 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/hxs2je/1048/128?blur=1"`; +exports[`image > 1337 > urlPicsumPhotos > with height 1`] = `"https://picsum.photos/seed/jwgYJ7n/1048/128?grayscale&blur=3"`; -exports[`image > 1337 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/hxs2je/128/1048?blur=1"`; +exports[`image > 1337 > urlPicsumPhotos > with width 1`] = `"https://picsum.photos/seed/jwgYJ7n/128/1048?grayscale&blur=3"`; -exports[`image > 1337 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/dhxs2/128/128?grayscale&blur=6"`; +exports[`image > 1337 > urlPicsumPhotos > with width and height 1`] = `"https://picsum.photos/seed/sjwgYJ/128/128?grayscale&blur=1"`; -exports[`image > 1337 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/1048x2242/346ba0/75bd57.webp?text=cerno%20tabella%20cohors"`; +exports[`image > 1337 > urlPlaceholder > noArgs 1`] = `"https://via.placeholder.com/1048x635/6a7b5f/a28d2f.jpg?text=testimonium%20thalassinus%20contra"`; exports[`image > 1337 > urlPlaceholder > with all options 1`] = `"https://via.placeholder.com/128x128/FF0000/0000FF.png?text=hello"`; -exports[`image > 1337 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/1048x2242/FF0000/346ba0.jpeg?text=canto%20eaque%20omnis"`; +exports[`image > 1337 > urlPlaceholder > with backgroundColor 1`] = `"https://via.placeholder.com/1048x635/FF0000/6a7b5f.png?text=ancilla%20creptio%20quisquam"`; exports[`image > 1337 > urlPlaceholder > with empty colors and text 1`] = `"https://via.placeholder.com/128x128//.png?text="`; -exports[`image > 1337 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/1048x2242/346ba0/75bd57.webp?text=voluptatibus%20cerno%20tabella"`; +exports[`image > 1337 > urlPlaceholder > with format 1`] = `"https://via.placeholder.com/1048x635/6a7b5f/a28d2f.webp?text=decipio%20testimonium%20thalassinus"`; -exports[`image > 1337 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/1048x128/c346ba/075bd5.jpeg?text=voluptatibus%20cerno%20tabella"`; +exports[`image > 1337 > urlPlaceholder > with height 1`] = `"https://via.placeholder.com/1048x128/36a7b5/fa28d2.webp?text=decipio%20testimonium%20thalassinus"`; -exports[`image > 1337 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/1048x2242/346ba0/75bd57.webp?text=Hello"`; +exports[`image > 1337 > urlPlaceholder > with text 1`] = `"https://via.placeholder.com/1048x635/6a7b5f/a28d2f.jpg?text=Hello"`; -exports[`image > 1337 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/1048x2242/346ba0/0000FF.jpeg?text=canto%20eaque%20omnis"`; +exports[`image > 1337 > urlPlaceholder > with textColor 1`] = `"https://via.placeholder.com/1048x635/6a7b5f/0000FF.png?text=ancilla%20creptio%20quisquam"`; -exports[`image > 1337 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x1048/c346ba/075bd5.jpeg?text=voluptatibus%20cerno%20tabella"`; +exports[`image > 1337 > urlPlaceholder > with width 1`] = `"https://via.placeholder.com/128x1048/36a7b5/fa28d2.webp?text=decipio%20testimonium%20thalassinus"`; -exports[`image > 1337 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/5c346b/a075bd.jpeg?text=conculco%20voluptatibus%20cerno"`; +exports[`image > 1337 > urlPlaceholder > with width and height 1`] = `"https://via.placeholder.com/128x128/536a7b/5fa28d.gif?text=vorago%20decipio%20testimonium"`; diff --git a/test/modules/__snapshots__/internet.spec.ts.snap b/test/modules/__snapshots__/internet.spec.ts.snap index de824bd42db..a3cc8bef26e 100644 --- a/test/modules/__snapshots__/internet.spec.ts.snap +++ b/test/modules/__snapshots__/internet.spec.ts.snap @@ -2,129 +2,129 @@ exports[`internet > 42 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/468.jpg"`; -exports[`internet > 42 > color > noArgs 1`] = `"#30667a"`; +exports[`internet > 42 > color > noArgs 1`] = `"#307a5e"`; -exports[`internet > 42 > color > with all options 1`] = `"#6298ac"`; +exports[`internet > 42 > color > with all options 1`] = `"#62ac90"`; -exports[`internet > 42 > color > with blueBase option 1`] = `"#3066ac"`; +exports[`internet > 42 > color > with blueBase option 1`] = `"#307a90"`; -exports[`internet > 42 > color > with greenBase option 1`] = `"#30987a"`; +exports[`internet > 42 > color > with greenBase option 1`] = `"#30ac5e"`; -exports[`internet > 42 > color > with legacy color base 1`] = `"#6298ac"`; +exports[`internet > 42 > color > with legacy color base 1`] = `"#62ac90"`; -exports[`internet > 42 > color > with redBase option 1`] = `"#62667a"`; +exports[`internet > 42 > color > with redBase option 1`] = `"#627a5e"`; -exports[`internet > 42 > displayName > noArgs 1`] = `"Garnet.Wiegand73"`; +exports[`internet > 42 > displayName > noArgs 1`] = `"Garnet15"`; -exports[`internet > 42 > displayName > with Chinese names 1`] = `"大羽.陳79"`; +exports[`internet > 42 > displayName > with Chinese names 1`] = `"大羽.陳95"`; -exports[`internet > 42 > displayName > with Cyrillic names 1`] = `"Фёдор.Достоевский79"`; +exports[`internet > 42 > displayName > with Cyrillic names 1`] = `"Фёдор.Достоевский95"`; -exports[`internet > 42 > displayName > with Latin names 1`] = `"Jane.Doe79"`; +exports[`internet > 42 > displayName > with Latin names 1`] = `"Jane.Doe95"`; -exports[`internet > 42 > displayName > with accented names 1`] = `"Hélene.Müller79"`; +exports[`internet > 42 > displayName > with accented names 1`] = `"Hélene.Müller95"`; -exports[`internet > 42 > displayName > with all option 1`] = `"Jane.Doe79"`; +exports[`internet > 42 > displayName > with all option 1`] = `"Jane.Doe95"`; -exports[`internet > 42 > displayName > with firstName option 1`] = `"Jane_Schinner18"`; +exports[`internet > 42 > displayName > with firstName option 1`] = `"Jane59"`; -exports[`internet > 42 > displayName > with lastName option 1`] = `"Garnet95"`; +exports[`internet > 42 > displayName > with lastName option 1`] = `"Garnet_Doe"`; -exports[`internet > 42 > displayName > with legacy names 1`] = `"Jane.Doe79"`; +exports[`internet > 42 > displayName > with legacy names 1`] = `"Jane.Doe95"`; -exports[`internet > 42 > domainName 1`] = `"hasty-sherbet.org"`; +exports[`internet > 42 > domainName 1`] = `"hasty-vegetable.net"`; exports[`internet > 42 > domainSuffix 1`] = `"info"`; -exports[`internet > 42 > domainWord 1`] = `"hasty-sherbet"`; +exports[`internet > 42 > domainWord 1`] = `"hasty-vegetable"`; -exports[`internet > 42 > email > noArgs 1`] = `"Peyton_Deckow-Reynolds@yahoo.com"`; +exports[`internet > 42 > email > noArgs 1`] = `"Valentine.Miller15@yahoo.com"`; -exports[`internet > 42 > email > with all options 1`] = `"Jane_Doe@fakerjs.dev"`; +exports[`internet > 42 > email > with all options 1`] = `"Jane.Doe@fakerjs.dev"`; -exports[`internet > 42 > email > with allowSpecialCharacters option 1`] = `"Peyton_Deckow-Reynolds@yahoo.com"`; +exports[`internet > 42 > email > with allowSpecialCharacters option 1`] = `"Valentine.Miller15@yahoo.com"`; -exports[`internet > 42 > email > with firstName option 1`] = `"Jane73@yahoo.com"`; +exports[`internet > 42 > email > with firstName option 1`] = `"Jane.Reynolds-Miller15@yahoo.com"`; -exports[`internet > 42 > email > with lastName option 1`] = `"Peyton_Doe@yahoo.com"`; +exports[`internet > 42 > email > with lastName option 1`] = `"Valentine_Doe59@yahoo.com"`; -exports[`internet > 42 > email > with legacy names 1`] = `"Jane_Doe95@yahoo.com"`; +exports[`internet > 42 > email > with legacy names 1`] = `"Jane_Doe@yahoo.com"`; exports[`internet > 42 > email > with legacy names and provider 1`] = `"Jane.Doe@fakerjs.dev"`; -exports[`internet > 42 > email > with legacy provider 1`] = `"Garnet73@fakerjs.dev"`; +exports[`internet > 42 > email > with legacy provider 1`] = `"Garnet.Reynolds-Miller15@fakerjs.dev"`; -exports[`internet > 42 > email > with provider option 1`] = `"Garnet73@fakerjs.dev"`; +exports[`internet > 42 > email > with provider option 1`] = `"Garnet.Reynolds-Miller15@fakerjs.dev"`; -exports[`internet > 42 > emoji > noArgs 1`] = `"🕸️"`; +exports[`internet > 42 > emoji > noArgs 1`] = `"🌾"`; exports[`internet > 42 > emoji > with options 1`] = `"🦔"`; -exports[`internet > 42 > exampleEmail > noArgs 1`] = `"Peyton_Deckow-Reynolds@example.com"`; +exports[`internet > 42 > exampleEmail > noArgs 1`] = `"Valentine.Miller15@example.com"`; -exports[`internet > 42 > exampleEmail > with all options 1`] = `"Jane_Doe95@example.com"`; +exports[`internet > 42 > exampleEmail > with all options 1`] = `"Jane_Doe@example.com"`; -exports[`internet > 42 > exampleEmail > with allowSpecialCharacters option 1`] = `"Peyton_Deckow-Reynolds@example.com"`; +exports[`internet > 42 > exampleEmail > with allowSpecialCharacters option 1`] = `"Valentine.Miller15@example.com"`; -exports[`internet > 42 > exampleEmail > with firstName option 1`] = `"Jane73@example.com"`; +exports[`internet > 42 > exampleEmail > with firstName option 1`] = `"Jane.Reynolds-Miller15@example.com"`; -exports[`internet > 42 > exampleEmail > with lastName option 1`] = `"Peyton_Doe@example.com"`; +exports[`internet > 42 > exampleEmail > with lastName option 1`] = `"Valentine_Doe59@example.com"`; -exports[`internet > 42 > exampleEmail > with legacy names 1`] = `"Jane_Doe95@example.com"`; +exports[`internet > 42 > exampleEmail > with legacy names 1`] = `"Jane_Doe@example.com"`; -exports[`internet > 42 > exampleEmail > with legacy names and options 1`] = `"Jane_Doe95@example.com"`; +exports[`internet > 42 > exampleEmail > with legacy names and options 1`] = `"Jane_Doe@example.com"`; exports[`internet > 42 > httpMethod 1`] = `"POST"`; -exports[`internet > 42 > httpStatusCode > noArgs 1`] = `207`; +exports[`internet > 42 > httpStatusCode > noArgs 1`] = `226`; exports[`internet > 42 > httpStatusCode > with options 1`] = `410`; -exports[`internet > 42 > ip 1`] = `"203.243.46.187"`; +exports[`internet > 42 > ip 1`] = `"243.187.153.39"`; -exports[`internet > 42 > ipv4 1`] = `"95.203.243.46"`; +exports[`internet > 42 > ipv4 1`] = `"95.243.187.153"`; -exports[`internet > 42 > ipv6 1`] = `"8be4:abdd:3932:1ad7:d3fe:01ff:ce40:4f4d"`; +exports[`internet > 42 > ipv6 1`] = `"8ead:331d:df0f:c444:6b96:d368:ab4b:d1d3"`; -exports[`internet > 42 > mac > noArgs 1`] = `"5c:f2:bc:99:27:21"`; +exports[`internet > 42 > mac > noArgs 1`] = `"5f:b9:22:0d:9b:0f"`; -exports[`internet > 42 > mac > with separator 1`] = `"5c:f2:bc:99:27:21"`; +exports[`internet > 42 > mac > with separator 1`] = `"5f:b9:22:0d:9b:0f"`; -exports[`internet > 42 > mac > with separator option 1`] = `"5c-f2-bc-99-27-21"`; +exports[`internet > 42 > mac > with separator option 1`] = `"5f-b9-22-0d-9b-0f"`; -exports[`internet > 42 > password > noArgs 1`] = `"Dl2fkYYKLsZdepz"`; +exports[`internet > 42 > password > noArgs 1`] = `"DfYsZdp522RJCLk"`; -exports[`internet > 42 > password > with legacy length 1`] = `"Dl2fkYYKLs"`; +exports[`internet > 42 > password > with legacy length 1`] = `"DfYsZdp522"`; -exports[`internet > 42 > password > with legacy length and memorable 1`] = `"Dl2fkYYKLs"`; +exports[`internet > 42 > password > with legacy length and memorable 1`] = `"DfYsZdp522"`; -exports[`internet > 42 > password > with legacy length, memorable and pattern 1`] = `"2522731671"`; +exports[`internet > 42 > password > with legacy length, memorable and pattern 1`] = `"5223192338"`; -exports[`internet > 42 > password > with legacy length, memorable, pattern and prefix 1`] = `"test252273"`; +exports[`internet > 42 > password > with legacy length, memorable, pattern and prefix 1`] = `"test522319"`; -exports[`internet > 42 > password > with length option 1`] = `"Dl2fkYYKLs"`; +exports[`internet > 42 > password > with length option 1`] = `"DfYsZdp522"`; -exports[`internet > 42 > password > with length, memorable, pattern and prefix option 1`] = `"test252273"`; +exports[`internet > 42 > password > with length, memorable, pattern and prefix option 1`] = `"test522319"`; -exports[`internet > 42 > password > with memorable option 1`] = `"Dl2fkYYKLsZdepz"`; +exports[`internet > 42 > password > with memorable option 1`] = `"DfYsZdp522RJCLk"`; -exports[`internet > 42 > password > with pattern option 1`] = `"252273167192423"`; +exports[`internet > 42 > password > with pattern option 1`] = `"522319233860266"`; -exports[`internet > 42 > password > with prefix option 1`] = `"testDl2fkYYKLsZ"`; +exports[`internet > 42 > password > with prefix option 1`] = `"testDfYsZdp522R"`; exports[`internet > 42 > port 1`] = `24545`; exports[`internet > 42 > protocol 1`] = `"http"`; -exports[`internet > 42 > url > noArgs 1`] = `"https://staid-vegetable.biz/"`; +exports[`internet > 42 > url > noArgs 1`] = `"https://wee-refrigerator.name/"`; -exports[`internet > 42 > url > with slash appended 1`] = `"https://hasty-sherbet.org/"`; +exports[`internet > 42 > url > with slash appended 1`] = `"https://hasty-vegetable.net/"`; -exports[`internet > 42 > url > without slash appended and with http protocol 1`] = `"http://hasty-sherbet.org"`; +exports[`internet > 42 > url > without slash appended and with http protocol 1`] = `"http://hasty-vegetable.net"`; -exports[`internet > 42 > userAgent 1`] = `"Mozilla/5.0 (X11; Linux x86_64; rv:15.1) Gecko/20100101 Firefox/15.1.7"`; +exports[`internet > 42 > userAgent 1`] = `"Mozilla/5.0 (X11; Linux i686; rv:13.5) Gecko/20100101 Firefox/13.5.1"`; -exports[`internet > 42 > userName > noArgs 1`] = `"Garnet73"`; +exports[`internet > 42 > userName > noArgs 1`] = `"Garnet.Reynolds-Miller15"`; exports[`internet > 42 > userName > with Chinese names 1`] = `"hlzp8d.tpv"`; @@ -136,292 +136,292 @@ exports[`internet > 42 > userName > with accented names 1`] = `"Helene.Muller"`; exports[`internet > 42 > userName > with all option 1`] = `"Jane.Doe"`; -exports[`internet > 42 > userName > with firstName option 1`] = `"Jane18"`; +exports[`internet > 42 > userName > with firstName option 1`] = `"Jane_Wiegand59"`; -exports[`internet > 42 > userName > with lastName option 1`] = `"Garnet_Doe95"`; +exports[`internet > 42 > userName > with lastName option 1`] = `"Garnet_Doe"`; exports[`internet > 42 > userName > with legacy names 1`] = `"Jane.Doe"`; exports[`internet > 1211 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1160.jpg"`; -exports[`internet > 1211 > color > noArgs 1`] = `"#773a72"`; +exports[`internet > 1211 > color > noArgs 1`] = `"#77721c"`; -exports[`internet > 1211 > color > with all options 1`] = `"#a96ca4"`; +exports[`internet > 1211 > color > with all options 1`] = `"#a9a44e"`; -exports[`internet > 1211 > color > with blueBase option 1`] = `"#773aa4"`; +exports[`internet > 1211 > color > with blueBase option 1`] = `"#77724e"`; -exports[`internet > 1211 > color > with greenBase option 1`] = `"#776c72"`; +exports[`internet > 1211 > color > with greenBase option 1`] = `"#77a41c"`; -exports[`internet > 1211 > color > with legacy color base 1`] = `"#a96ca4"`; +exports[`internet > 1211 > color > with legacy color base 1`] = `"#a9a44e"`; -exports[`internet > 1211 > color > with redBase option 1`] = `"#a93a72"`; +exports[`internet > 1211 > color > with redBase option 1`] = `"#a9721c"`; -exports[`internet > 1211 > displayName > noArgs 1`] = `"Tito22"`; +exports[`internet > 1211 > displayName > noArgs 1`] = `"Tito_Fahey67"`; -exports[`internet > 1211 > displayName > with Chinese names 1`] = `"大羽_陳45"`; +exports[`internet > 1211 > displayName > with Chinese names 1`] = `"大羽89"`; -exports[`internet > 1211 > displayName > with Cyrillic names 1`] = `"Фёдор_Достоевский45"`; +exports[`internet > 1211 > displayName > with Cyrillic names 1`] = `"Фёдор89"`; -exports[`internet > 1211 > displayName > with Latin names 1`] = `"Jane_Doe45"`; +exports[`internet > 1211 > displayName > with Latin names 1`] = `"Jane89"`; -exports[`internet > 1211 > displayName > with accented names 1`] = `"Hélene_Müller45"`; +exports[`internet > 1211 > displayName > with accented names 1`] = `"Hélene89"`; -exports[`internet > 1211 > displayName > with all option 1`] = `"Jane_Doe45"`; +exports[`internet > 1211 > displayName > with all option 1`] = `"Jane89"`; -exports[`internet > 1211 > displayName > with firstName option 1`] = `"Jane77"`; +exports[`internet > 1211 > displayName > with firstName option 1`] = `"Jane.Trantow99"`; -exports[`internet > 1211 > displayName > with lastName option 1`] = `"Tito.Doe89"`; +exports[`internet > 1211 > displayName > with lastName option 1`] = `"Tito_Doe22"`; -exports[`internet > 1211 > displayName > with legacy names 1`] = `"Jane_Doe45"`; +exports[`internet > 1211 > displayName > with legacy names 1`] = `"Jane89"`; -exports[`internet > 1211 > domainName 1`] = `"vicious-infrastructure.org"`; +exports[`internet > 1211 > domainName 1`] = `"vicious-teletype.biz"`; exports[`internet > 1211 > domainSuffix 1`] = `"org"`; -exports[`internet > 1211 > domainWord 1`] = `"vicious-infrastructure"`; +exports[`internet > 1211 > domainWord 1`] = `"vicious-teletype"`; -exports[`internet > 1211 > email > noArgs 1`] = `"Jadyn12@hotmail.com"`; +exports[`internet > 1211 > email > noArgs 1`] = `"Skye68@hotmail.com"`; -exports[`internet > 1211 > email > with all options 1`] = `"Jane_Doe@fakerjs.dev"`; +exports[`internet > 1211 > email > with all options 1`] = `"Jane_Doe89@fakerjs.dev"`; -exports[`internet > 1211 > email > with allowSpecialCharacters option 1`] = `"Jadyn12@hotmail.com"`; +exports[`internet > 1211 > email > with allowSpecialCharacters option 1`] = `"Skye68@hotmail.com"`; -exports[`internet > 1211 > email > with firstName option 1`] = `"Jane_Trantow22@hotmail.com"`; +exports[`internet > 1211 > email > with firstName option 1`] = `"Jane67@hotmail.com"`; -exports[`internet > 1211 > email > with lastName option 1`] = `"Jadyn_Doe77@hotmail.com"`; +exports[`internet > 1211 > email > with lastName option 1`] = `"Skye.Doe@hotmail.com"`; -exports[`internet > 1211 > email > with legacy names 1`] = `"Jane.Doe@hotmail.com"`; +exports[`internet > 1211 > email > with legacy names 1`] = `"Jane_Doe@hotmail.com"`; -exports[`internet > 1211 > email > with legacy names and provider 1`] = `"Jane_Doe@fakerjs.dev"`; +exports[`internet > 1211 > email > with legacy names and provider 1`] = `"Jane_Doe89@fakerjs.dev"`; -exports[`internet > 1211 > email > with legacy provider 1`] = `"Tito_Trantow22@fakerjs.dev"`; +exports[`internet > 1211 > email > with legacy provider 1`] = `"Tito67@fakerjs.dev"`; -exports[`internet > 1211 > email > with provider option 1`] = `"Tito_Trantow22@fakerjs.dev"`; +exports[`internet > 1211 > email > with provider option 1`] = `"Tito67@fakerjs.dev"`; -exports[`internet > 1211 > emoji > noArgs 1`] = `"🇮🇸"`; +exports[`internet > 1211 > emoji > noArgs 1`] = `"🇹🇳"`; exports[`internet > 1211 > emoji > with options 1`] = `"🌲"`; -exports[`internet > 1211 > exampleEmail > noArgs 1`] = `"Jadyn12@example.net"`; +exports[`internet > 1211 > exampleEmail > noArgs 1`] = `"Skye68@example.net"`; -exports[`internet > 1211 > exampleEmail > with all options 1`] = `"Jane#Doe@example.net"`; +exports[`internet > 1211 > exampleEmail > with all options 1`] = `"Jane_Doe@example.net"`; -exports[`internet > 1211 > exampleEmail > with allowSpecialCharacters option 1`] = `"Jadyn12@example.net"`; +exports[`internet > 1211 > exampleEmail > with allowSpecialCharacters option 1`] = `"Skye68@example.net"`; -exports[`internet > 1211 > exampleEmail > with firstName option 1`] = `"Jane_Trantow22@example.net"`; +exports[`internet > 1211 > exampleEmail > with firstName option 1`] = `"Jane67@example.net"`; -exports[`internet > 1211 > exampleEmail > with lastName option 1`] = `"Jadyn_Doe77@example.net"`; +exports[`internet > 1211 > exampleEmail > with lastName option 1`] = `"Skye.Doe@example.net"`; -exports[`internet > 1211 > exampleEmail > with legacy names 1`] = `"Jane.Doe@example.net"`; +exports[`internet > 1211 > exampleEmail > with legacy names 1`] = `"Jane_Doe@example.net"`; -exports[`internet > 1211 > exampleEmail > with legacy names and options 1`] = `"Jane#Doe@example.net"`; +exports[`internet > 1211 > exampleEmail > with legacy names and options 1`] = `"Jane_Doe@example.net"`; exports[`internet > 1211 > httpMethod 1`] = `"PATCH"`; -exports[`internet > 1211 > httpStatusCode > noArgs 1`] = `505`; +exports[`internet > 1211 > httpStatusCode > noArgs 1`] = `510`; exports[`internet > 1211 > httpStatusCode > with options 1`] = `429`; -exports[`internet > 1211 > ip 1`] = `"adb4:2f0e:3f4a:973f:ab0a:eefc:e96d:fcf4"`; +exports[`internet > 1211 > ip 1`] = `"d4fe:fa7f:baec:9dc4:c48f:a8eb:f46f:b7c8"`; -exports[`internet > 1211 > ipv4 1`] = `"237.117.228.199"`; +exports[`internet > 1211 > ipv4 1`] = `"237.228.57.255"`; -exports[`internet > 1211 > ipv6 1`] = `"eadb:42f0:e3f4:a973:fab0:aeef:ce96:dfcf"`; +exports[`internet > 1211 > ipv6 1`] = `"ed4f:efa7:fbae:c9dc:4c48:fa8e:bf46:fb7c"`; -exports[`internet > 1211 > mac > noArgs 1`] = `"e7:ec:32:f0:a2:a3"`; +exports[`internet > 1211 > mac > noArgs 1`] = `"ee:3f:aa:c5:bd:ca"`; -exports[`internet > 1211 > mac > with separator 1`] = `"e7:ec:32:f0:a2:a3"`; +exports[`internet > 1211 > mac > with separator 1`] = `"ee:3f:aa:c5:bd:ca"`; -exports[`internet > 1211 > mac > with separator option 1`] = `"e7-ec-32-f0-a2-a3"`; +exports[`internet > 1211 > mac > with separator option 1`] = `"ee-3f-aa-c5-bd-ca"`; -exports[`internet > 1211 > password > noArgs 1`] = `"yLuj60b5iHB0bhn"`; +exports[`internet > 1211 > password > noArgs 1`] = `"yu6biBbnj_oJsr5"`; -exports[`internet > 1211 > password > with legacy length 1`] = `"yLuj60b5iH"`; +exports[`internet > 1211 > password > with legacy length 1`] = `"yu6biBbnj_"`; -exports[`internet > 1211 > password > with legacy length and memorable 1`] = `"yLuj60b5iH"`; +exports[`internet > 1211 > password > with legacy length and memorable 1`] = `"yu6biBbnj_"`; -exports[`internet > 1211 > password > with legacy length, memorable and pattern 1`] = `"6050530611"`; +exports[`internet > 1211 > password > with legacy length, memorable and pattern 1`] = `"6536184255"`; -exports[`internet > 1211 > password > with legacy length, memorable, pattern and prefix 1`] = `"test605053"`; +exports[`internet > 1211 > password > with legacy length, memorable, pattern and prefix 1`] = `"test653618"`; -exports[`internet > 1211 > password > with length option 1`] = `"yLuj60b5iH"`; +exports[`internet > 1211 > password > with length option 1`] = `"yu6biBbnj_"`; -exports[`internet > 1211 > password > with length, memorable, pattern and prefix option 1`] = `"test605053"`; +exports[`internet > 1211 > password > with length, memorable, pattern and prefix option 1`] = `"test653618"`; -exports[`internet > 1211 > password > with memorable option 1`] = `"yLuj60b5iHB0bhn"`; +exports[`internet > 1211 > password > with memorable option 1`] = `"yu6biBbnj_oJsr5"`; -exports[`internet > 1211 > password > with pattern option 1`] = `"605053061176844"`; +exports[`internet > 1211 > password > with pattern option 1`] = `"653618425553389"`; -exports[`internet > 1211 > password > with prefix option 1`] = `"testyLuj60b5iHB"`; +exports[`internet > 1211 > password > with prefix option 1`] = `"testyu6biBbnj_o"`; exports[`internet > 1211 > port 1`] = `60851`; exports[`internet > 1211 > protocol 1`] = `"https"`; -exports[`internet > 1211 > url > noArgs 1`] = `"https://judicious-teletype.net"`; +exports[`internet > 1211 > url > noArgs 1`] = `"https://unknown-cruise.org"`; -exports[`internet > 1211 > url > with slash appended 1`] = `"https://vicious-infrastructure.org/"`; +exports[`internet > 1211 > url > with slash appended 1`] = `"https://vicious-teletype.biz/"`; -exports[`internet > 1211 > url > without slash appended and with http protocol 1`] = `"http://vicious-infrastructure.org"`; +exports[`internet > 1211 > url > without slash appended and with http protocol 1`] = `"http://vicious-teletype.biz"`; -exports[`internet > 1211 > userAgent 1`] = `"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.3; Trident/4.0)"`; +exports[`internet > 1211 > userAgent 1`] = `"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"`; -exports[`internet > 1211 > userName > noArgs 1`] = `"Tito_Trantow22"`; +exports[`internet > 1211 > userName > noArgs 1`] = `"Tito67"`; -exports[`internet > 1211 > userName > with Chinese names 1`] = `"hlzp8d_tpv"`; +exports[`internet > 1211 > userName > with Chinese names 1`] = `"hlzp8d_tpv89"`; -exports[`internet > 1211 > userName > with Cyrillic names 1`] = `"Fedor_Dostoevskii"`; +exports[`internet > 1211 > userName > with Cyrillic names 1`] = `"Fedor_Dostoevskii89"`; -exports[`internet > 1211 > userName > with Latin names 1`] = `"Jane_Doe"`; +exports[`internet > 1211 > userName > with Latin names 1`] = `"Jane_Doe89"`; -exports[`internet > 1211 > userName > with accented names 1`] = `"Helene_Muller"`; +exports[`internet > 1211 > userName > with accented names 1`] = `"Helene_Muller89"`; -exports[`internet > 1211 > userName > with all option 1`] = `"Jane_Doe"`; +exports[`internet > 1211 > userName > with all option 1`] = `"Jane_Doe89"`; -exports[`internet > 1211 > userName > with firstName option 1`] = `"Jane_Koelpin77"`; +exports[`internet > 1211 > userName > with firstName option 1`] = `"Jane99"`; -exports[`internet > 1211 > userName > with lastName option 1`] = `"Tito.Doe"`; +exports[`internet > 1211 > userName > with lastName option 1`] = `"Tito_Doe"`; -exports[`internet > 1211 > userName > with legacy names 1`] = `"Jane_Doe"`; +exports[`internet > 1211 > userName > with legacy names 1`] = `"Jane_Doe89"`; exports[`internet > 1337 > avatar 1`] = `"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/327.jpg"`; -exports[`internet > 1337 > color > noArgs 1`] = `"#214814"`; +exports[`internet > 1337 > color > noArgs 1`] = `"#211423"`; -exports[`internet > 1337 > color > with all options 1`] = `"#537a46"`; +exports[`internet > 1337 > color > with all options 1`] = `"#534655"`; -exports[`internet > 1337 > color > with blueBase option 1`] = `"#214846"`; +exports[`internet > 1337 > color > with blueBase option 1`] = `"#211455"`; -exports[`internet > 1337 > color > with greenBase option 1`] = `"#217a14"`; +exports[`internet > 1337 > color > with greenBase option 1`] = `"#214623"`; -exports[`internet > 1337 > color > with legacy color base 1`] = `"#537a46"`; +exports[`internet > 1337 > color > with legacy color base 1`] = `"#534655"`; -exports[`internet > 1337 > color > with redBase option 1`] = `"#534814"`; +exports[`internet > 1337 > color > with redBase option 1`] = `"#531423"`; -exports[`internet > 1337 > displayName > noArgs 1`] = `"Devyn.Cronin"`; +exports[`internet > 1337 > displayName > noArgs 1`] = `"Devyn.Gottlieb"`; -exports[`internet > 1337 > displayName > with Chinese names 1`] = `"大羽56"`; +exports[`internet > 1337 > displayName > with Chinese names 1`] = `"大羽15"`; -exports[`internet > 1337 > displayName > with Cyrillic names 1`] = `"Фёдор56"`; +exports[`internet > 1337 > displayName > with Cyrillic names 1`] = `"Фёдор15"`; -exports[`internet > 1337 > displayName > with Latin names 1`] = `"Jane56"`; +exports[`internet > 1337 > displayName > with Latin names 1`] = `"Jane15"`; -exports[`internet > 1337 > displayName > with accented names 1`] = `"Hélene56"`; +exports[`internet > 1337 > displayName > with accented names 1`] = `"Hélene15"`; -exports[`internet > 1337 > displayName > with all option 1`] = `"Jane56"`; +exports[`internet > 1337 > displayName > with all option 1`] = `"Jane15"`; -exports[`internet > 1337 > displayName > with firstName option 1`] = `"Jane21"`; +exports[`internet > 1337 > displayName > with firstName option 1`] = `"Jane45"`; -exports[`internet > 1337 > displayName > with lastName option 1`] = `"Devyn15"`; +exports[`internet > 1337 > displayName > with lastName option 1`] = `"Devyn.Doe"`; -exports[`internet > 1337 > displayName > with legacy names 1`] = `"Jane56"`; +exports[`internet > 1337 > displayName > with legacy names 1`] = `"Jane15"`; -exports[`internet > 1337 > domainName 1`] = `"fair-mile.com"`; +exports[`internet > 1337 > domainName 1`] = `"fair-chow.biz"`; exports[`internet > 1337 > domainSuffix 1`] = `"biz"`; -exports[`internet > 1337 > domainWord 1`] = `"fair-mile"`; +exports[`internet > 1337 > domainWord 1`] = `"fair-chow"`; -exports[`internet > 1337 > email > noArgs 1`] = `"Kellen.Effertz@gmail.com"`; +exports[`internet > 1337 > email > noArgs 1`] = `"Carmella.Koelpin51@gmail.com"`; -exports[`internet > 1337 > email > with all options 1`] = `"Jane&Doe56@fakerjs.dev"`; +exports[`internet > 1337 > email > with all options 1`] = `"Jane.Doe15@fakerjs.dev"`; -exports[`internet > 1337 > email > with allowSpecialCharacters option 1`] = `"Kellen'Effertz@gmail.com"`; +exports[`internet > 1337 > email > with allowSpecialCharacters option 1`] = `"Carmella.Koelpin51@gmail.com"`; -exports[`internet > 1337 > email > with firstName option 1`] = `"Jane.Cronin@gmail.com"`; +exports[`internet > 1337 > email > with firstName option 1`] = `"Jane.Gottlieb@gmail.com"`; -exports[`internet > 1337 > email > with lastName option 1`] = `"Kellen.Doe21@gmail.com"`; +exports[`internet > 1337 > email > with lastName option 1`] = `"Carmella.Doe45@gmail.com"`; -exports[`internet > 1337 > email > with legacy names 1`] = `"Jane_Doe15@gmail.com"`; +exports[`internet > 1337 > email > with legacy names 1`] = `"Jane.Doe27@gmail.com"`; -exports[`internet > 1337 > email > with legacy names and provider 1`] = `"Jane.Doe56@fakerjs.dev"`; +exports[`internet > 1337 > email > with legacy names and provider 1`] = `"Jane.Doe15@fakerjs.dev"`; -exports[`internet > 1337 > email > with legacy provider 1`] = `"Devyn.Cronin@fakerjs.dev"`; +exports[`internet > 1337 > email > with legacy provider 1`] = `"Devyn.Gottlieb@fakerjs.dev"`; -exports[`internet > 1337 > email > with provider option 1`] = `"Devyn.Cronin@fakerjs.dev"`; +exports[`internet > 1337 > email > with provider option 1`] = `"Devyn.Gottlieb@fakerjs.dev"`; -exports[`internet > 1337 > emoji > noArgs 1`] = `"💇🏼‍♀️"`; +exports[`internet > 1337 > emoji > noArgs 1`] = `"🧏🏾‍♂️"`; exports[`internet > 1337 > emoji > with options 1`] = `"🐪"`; -exports[`internet > 1337 > exampleEmail > noArgs 1`] = `"Kellen.Effertz@example.org"`; +exports[`internet > 1337 > exampleEmail > noArgs 1`] = `"Carmella.Koelpin51@example.org"`; -exports[`internet > 1337 > exampleEmail > with all options 1`] = `"Jane_Doe15@example.org"`; +exports[`internet > 1337 > exampleEmail > with all options 1`] = `"Jane/Doe27@example.org"`; -exports[`internet > 1337 > exampleEmail > with allowSpecialCharacters option 1`] = `"Kellen'Effertz@example.org"`; +exports[`internet > 1337 > exampleEmail > with allowSpecialCharacters option 1`] = `"Carmella.Koelpin51@example.org"`; -exports[`internet > 1337 > exampleEmail > with firstName option 1`] = `"Jane.Cronin@example.org"`; +exports[`internet > 1337 > exampleEmail > with firstName option 1`] = `"Jane.Gottlieb@example.org"`; -exports[`internet > 1337 > exampleEmail > with lastName option 1`] = `"Kellen.Doe21@example.org"`; +exports[`internet > 1337 > exampleEmail > with lastName option 1`] = `"Carmella.Doe45@example.org"`; -exports[`internet > 1337 > exampleEmail > with legacy names 1`] = `"Jane_Doe15@example.org"`; +exports[`internet > 1337 > exampleEmail > with legacy names 1`] = `"Jane.Doe27@example.org"`; -exports[`internet > 1337 > exampleEmail > with legacy names and options 1`] = `"Jane_Doe15@example.org"`; +exports[`internet > 1337 > exampleEmail > with legacy names and options 1`] = `"Jane/Doe27@example.org"`; exports[`internet > 1337 > httpMethod 1`] = `"POST"`; -exports[`internet > 1337 > httpStatusCode > noArgs 1`] = `205`; +exports[`internet > 1337 > httpStatusCode > noArgs 1`] = `201`; exports[`internet > 1337 > httpStatusCode > with options 1`] = `407`; -exports[`internet > 1337 > ip 1`] = `"143.40.54.71"`; +exports[`internet > 1337 > ip 1`] = `"40.71.117.82"`; -exports[`internet > 1337 > ipv4 1`] = `"67.143.40.54"`; +exports[`internet > 1337 > ipv4 1`] = `"67.40.71.117"`; -exports[`internet > 1337 > ipv6 1`] = `"5c34:6ba0:75bd:57f5:a62b:82d7:2af3:9cbb"`; +exports[`internet > 1337 > ipv6 1`] = `"536a:7b5f:a28d:2f9b:b79c:a46e:a394:bc4f"`; -exports[`internet > 1337 > mac > noArgs 1`] = `"48:23:48:70:53:89"`; +exports[`internet > 1337 > mac > noArgs 1`] = `"42:47:58:4f:b1:6a"`; -exports[`internet > 1337 > mac > with separator 1`] = `"48:23:48:70:53:89"`; +exports[`internet > 1337 > mac > with separator 1`] = `"42:47:58:4f:b1:6a"`; -exports[`internet > 1337 > mac > with separator option 1`] = `"48-23-48-70-53-89"`; +exports[`internet > 1337 > mac > with separator option 1`] = `"42-47-58-4f-b1-6a"`; -exports[`internet > 1337 > password > noArgs 1`] = `"9V05TL7RY9fmECg"`; +exports[`internet > 1337 > password > noArgs 1`] = `"90LR9fEKllCHXi2"`; -exports[`internet > 1337 > password > with legacy length 1`] = `"9V05TL7RY9"`; +exports[`internet > 1337 > password > with legacy length 1`] = `"90LR9fEKll"`; -exports[`internet > 1337 > password > with legacy length and memorable 1`] = `"9V05TL7RY9"`; +exports[`internet > 1337 > password > with legacy length and memorable 1`] = `"90LR9fEKll"`; -exports[`internet > 1337 > password > with legacy length, memorable and pattern 1`] = `"9057902132"`; +exports[`internet > 1337 > password > with legacy length, memorable and pattern 1`] = `"9092132093"`; -exports[`internet > 1337 > password > with legacy length, memorable, pattern and prefix 1`] = `"test905790"`; +exports[`internet > 1337 > password > with legacy length, memorable, pattern and prefix 1`] = `"test909213"`; -exports[`internet > 1337 > password > with length option 1`] = `"9V05TL7RY9"`; +exports[`internet > 1337 > password > with length option 1`] = `"90LR9fEKll"`; -exports[`internet > 1337 > password > with length, memorable, pattern and prefix option 1`] = `"test905790"`; +exports[`internet > 1337 > password > with length, memorable, pattern and prefix option 1`] = `"test909213"`; -exports[`internet > 1337 > password > with memorable option 1`] = `"9V05TL7RY9fmECg"`; +exports[`internet > 1337 > password > with memorable option 1`] = `"90LR9fEKllCHXi2"`; -exports[`internet > 1337 > password > with pattern option 1`] = `"905790213209301"`; +exports[`internet > 1337 > password > with pattern option 1`] = `"909213209301777"`; -exports[`internet > 1337 > password > with prefix option 1`] = `"test9V05TL7RY9f"`; +exports[`internet > 1337 > password > with prefix option 1`] = `"test90LR9fEKllC"`; exports[`internet > 1337 > port 1`] = `17172`; exports[`internet > 1337 > protocol 1`] = `"http"`; -exports[`internet > 1337 > url > noArgs 1`] = `"https://needy-chow.biz/"`; +exports[`internet > 1337 > url > noArgs 1`] = `"https://crushing-dough.info/"`; -exports[`internet > 1337 > url > with slash appended 1`] = `"https://fair-mile.com/"`; +exports[`internet > 1337 > url > with slash appended 1`] = `"https://fair-chow.biz/"`; -exports[`internet > 1337 > url > without slash appended and with http protocol 1`] = `"http://fair-mile.com"`; +exports[`internet > 1337 > url > without slash appended and with http protocol 1`] = `"http://fair-chow.biz"`; -exports[`internet > 1337 > userAgent 1`] = `"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.7.0; rv:6.2) Gecko/20100101 Firefox/6.2.2"`; +exports[`internet > 1337 > userAgent 1`] = `"Mozilla/5.0 (Windows NT 5.3; WOW64; rv:8.4) Gecko/20100101 Firefox/8.4.3"`; -exports[`internet > 1337 > userName > noArgs 1`] = `"Devyn.Cronin"`; +exports[`internet > 1337 > userName > noArgs 1`] = `"Devyn.Gottlieb"`; -exports[`internet > 1337 > userName > with Chinese names 1`] = `"hlzp8d.tpv56"`; +exports[`internet > 1337 > userName > with Chinese names 1`] = `"hlzp8d.tpv15"`; -exports[`internet > 1337 > userName > with Cyrillic names 1`] = `"Fedor.Dostoevskii56"`; +exports[`internet > 1337 > userName > with Cyrillic names 1`] = `"Fedor.Dostoevskii15"`; -exports[`internet > 1337 > userName > with Latin names 1`] = `"Jane.Doe56"`; +exports[`internet > 1337 > userName > with Latin names 1`] = `"Jane.Doe15"`; -exports[`internet > 1337 > userName > with accented names 1`] = `"Helene.Muller56"`; +exports[`internet > 1337 > userName > with accented names 1`] = `"Helene.Muller15"`; -exports[`internet > 1337 > userName > with all option 1`] = `"Jane.Doe56"`; +exports[`internet > 1337 > userName > with all option 1`] = `"Jane.Doe15"`; -exports[`internet > 1337 > userName > with firstName option 1`] = `"Jane.MacGyver21"`; +exports[`internet > 1337 > userName > with firstName option 1`] = `"Jane.Cronin45"`; -exports[`internet > 1337 > userName > with lastName option 1`] = `"Devyn_Doe15"`; +exports[`internet > 1337 > userName > with lastName option 1`] = `"Devyn.Doe27"`; -exports[`internet > 1337 > userName > with legacy names 1`] = `"Jane.Doe56"`; +exports[`internet > 1337 > userName > with legacy names 1`] = `"Jane.Doe15"`; diff --git a/test/modules/__snapshots__/location.spec.ts.snap b/test/modules/__snapshots__/location.spec.ts.snap index b4e2586b184..a29416edf89 100644 --- a/test/modules/__snapshots__/location.spec.ts.snap +++ b/test/modules/__snapshots__/location.spec.ts.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`location > 42 > buildingNumber 1`] = `"8917"`; +exports[`location > 42 > buildingNumber 1`] = `"9751"`; exports[`location > 42 > cardinalDirection > noArgs 1`] = `"East"`; @@ -8,7 +8,7 @@ exports[`location > 42 > cardinalDirection > with abbreviated option 1`] = `"E"` exports[`location > 42 > cardinalDirection > with boolean 1`] = `"East"`; -exports[`location > 42 > city 1`] = `"Port Valentine"`; +exports[`location > 42 > city 1`] = `"Fort Moses"`; exports[`location > 42 > cityName 1`] = `"Hamilton"`; @@ -44,15 +44,15 @@ exports[`location > 42 > latitude > with max and min option 1`] = `-2.5092`; exports[`location > 42 > latitude > with max option 1`] = `-52.546`; -exports[`location > 42 > latitude > with max, min and precision option 1`] = `-2.5091977138`; +exports[`location > 42 > latitude > with max, min and precision option 1`] = `-2.5091976231`; exports[`location > 42 > latitude > with min 1`] = `27.454`; exports[`location > 42 > latitude > with min option 1`] = `27.454`; -exports[`location > 42 > latitude > with precision 1`] = `-22.5827794243`; +exports[`location > 42 > latitude > with precision 1`] = `-22.5827786075`; -exports[`location > 42 > latitude > with precision option 1`] = `-22.5827794243`; +exports[`location > 42 > latitude > with precision option 1`] = `-22.5827786075`; exports[`location > 42 > longitude > noArgs 1`] = `-45.1656`; @@ -62,69 +62,69 @@ exports[`location > 42 > longitude > with max and min option 1`] = `-2.5092`; exports[`location > 42 > longitude > with max option 1`] = `-108.8374`; -exports[`location > 42 > longitude > with max, min and precision option 1`] = `-2.5091977138`; +exports[`location > 42 > longitude > with max, min and precision option 1`] = `-2.5091976231`; exports[`location > 42 > longitude > with min 1`] = `61.1626`; exports[`location > 42 > longitude > with min option 1`] = `61.1626`; -exports[`location > 42 > longitude > with precision 1`] = `-45.1655588485`; +exports[`location > 42 > longitude > with precision 1`] = `-45.165557215`; -exports[`location > 42 > longitude > with precision option 1`] = `-45.1655588485`; +exports[`location > 42 > longitude > with precision option 1`] = `-45.165557215`; exports[`location > 42 > nearbyGPSCoordinate > near origin 1`] = ` [ - 0.08140632875358447, - -0.08093642792425726, + 0.09716177782431099, + -0.0966009319947716, ] `; exports[`location > 42 > nearbyGPSCoordinate > noArgs 1`] = ` [ -22.5828, - 106.7555, + 162.2572, ] `; exports[`location > 42 > nearbyGPSCoordinate > only isMetric 1`] = ` [ -22.5828, - 106.7555, + 162.2572, ] `; exports[`location > 42 > nearbyGPSCoordinate > only radius 1`] = ` [ -22.5828, - 106.7555, + 162.2572, ] `; exports[`location > 42 > nearbyGPSCoordinate > with origin and isMetric 1`] = ` [ - 37.05058762889859, - -13.05029562250138, + 37.06038001199696, + -13.060031481137685, ] `; exports[`location > 42 > nearbyGPSCoordinate > with origin and radius 1`] = ` [ - 37.122112668351875, - -13.121407798779614, + 37.14574901717946, + -13.144907711778615, ] `; exports[`location > 42 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = ` [ - 37.075875092904894, - -13.075437119965613, + 37.09056366755245, + -13.090040907920184, ] `; exports[`location > 42 > nearbyGPSCoordinate > with radius and isMetric 1`] = ` [ -22.5828, - 106.7555, + 162.2572, ] `; @@ -134,7 +134,7 @@ exports[`location > 42 > ordinalDirection > with abbreviated option 1`] = `"NW"` exports[`location > 42 > ordinalDirection > with boolean 1`] = `"Northwest"`; -exports[`location > 42 > secondaryAddress 1`] = `"Apt. 891"`; +exports[`location > 42 > secondaryAddress 1`] = `"Apt. 975"`; exports[`location > 42 > state > noArgs 1`] = `"Maine"`; @@ -142,25 +142,25 @@ exports[`location > 42 > state > with options 1`] = `"ME"`; exports[`location > 42 > stateAbbr 1`] = `"ME"`; -exports[`location > 42 > street 1`] = `"Schinner Villages"`; +exports[`location > 42 > street 1`] = `"Wiegand Ridges"`; -exports[`location > 42 > streetAddress > noArgs 1`] = `"8917 Oxford Street"`; +exports[`location > 42 > streetAddress > noArgs 1`] = `"9751 Anderson Throughway"`; -exports[`location > 42 > streetAddress > with boolean 1`] = `"8917 Oxford Street"`; +exports[`location > 42 > streetAddress > with boolean 1`] = `"9751 Anderson Throughway"`; -exports[`location > 42 > streetAddress > with useFullAddress options 1`] = `"8917 Oxford Street Suite 241"`; +exports[`location > 42 > streetAddress > with useFullAddress options 1`] = `"9751 Anderson Throughway Suite 709"`; exports[`location > 42 > timeZone 1`] = `"America/North_Dakota/New_Salem"`; -exports[`location > 42 > zipCode > noArgs 1`] = `"79177"`; +exports[`location > 42 > zipCode > noArgs 1`] = `"97511"`; -exports[`location > 42 > zipCode > with format option 1`] = `"379-177"`; +exports[`location > 42 > zipCode > with format option 1`] = `"397-511"`; -exports[`location > 42 > zipCode > with string 1`] = `"379"`; +exports[`location > 42 > zipCode > with string 1`] = `"397"`; -exports[`location > 42 > zipCodeByState > noArgs 1`] = `"79177"`; +exports[`location > 42 > zipCodeByState > noArgs 1`] = `"97511"`; -exports[`location > 1211 > buildingNumber 1`] = `"587"`; +exports[`location > 1211 > buildingNumber 1`] = `"929"`; exports[`location > 1211 > cardinalDirection > noArgs 1`] = `"West"`; @@ -168,7 +168,7 @@ exports[`location > 1211 > cardinalDirection > with abbreviated option 1`] = `"W exports[`location > 1211 > cardinalDirection > with boolean 1`] = `"West"`; -exports[`location > 1211 > city 1`] = `"La Crosse"`; +exports[`location > 1211 > city 1`] = `"The Villages"`; exports[`location > 1211 > cityName 1`] = `"Utica"`; @@ -204,15 +204,15 @@ exports[`location > 1211 > latitude > with max and min option 1`] = `8.5704`; exports[`location > 1211 > latitude > with max option 1`] = `2.8521`; -exports[`location > 1211 > latitude > with max, min and precision option 1`] = `8.5704030749`; +exports[`location > 1211 > latitude > with max, min and precision option 1`] = `8.5704030781`; exports[`location > 1211 > latitude > with min 1`] = `82.8521`; exports[`location > 1211 > latitude > with min option 1`] = `82.8521`; -exports[`location > 1211 > latitude > with precision 1`] = `77.1336276737`; +exports[`location > 1211 > latitude > with precision 1`] = `77.1336277025`; -exports[`location > 1211 > latitude > with precision option 1`] = `77.1336276737`; +exports[`location > 1211 > latitude > with precision option 1`] = `77.1336277025`; exports[`location > 1211 > longitude > noArgs 1`] = `154.2673`; @@ -222,69 +222,69 @@ exports[`location > 1211 > longitude > with max and min option 1`] = `8.5704`; exports[`location > 1211 > longitude > with max option 1`] = `-3.5811`; -exports[`location > 1211 > longitude > with max, min and precision option 1`] = `8.5704030749`; +exports[`location > 1211 > longitude > with max, min and precision option 1`] = `8.5704030781`; exports[`location > 1211 > longitude > with min 1`] = `166.4189`; exports[`location > 1211 > longitude > with min option 1`] = `166.4189`; -exports[`location > 1211 > longitude > with precision 1`] = `154.2672553473`; +exports[`location > 1211 > longitude > with precision 1`] = `154.267255405`; -exports[`location > 1211 > longitude > with precision option 1`] = `154.2672553473`; +exports[`location > 1211 > longitude > with precision option 1`] = `154.267255405`; exports[`location > 1211 > nearbyGPSCoordinate > near origin 1`] = ` [ - -0.02872111236834621, - 0.05959024752564801, + -0.0559064403336199, + 0.11599406649133925, ] `; exports[`location > 1211 > nearbyGPSCoordinate > noArgs 1`] = ` [ 77.1337, - -14.7545, + 141.6498, ] `; exports[`location > 1211 > nearbyGPSCoordinate > only isMetric 1`] = ` [ 77.1337, - -14.7545, + 141.6498, ] `; exports[`location > 1211 > nearbyGPSCoordinate > only radius 1`] = ` [ 77.1337, - -14.7545, + 141.6498, ] `; exports[`location > 1211 > nearbyGPSCoordinate > with origin and isMetric 1`] = ` [ - 36.98215379643012, - -12.962972893442156, + 36.96526016799632, + -12.927922179282291, ] `; exports[`location > 1211 > nearbyGPSCoordinate > with origin and radius 1`] = ` [ - 36.95691638741659, - -12.910610595257708, + 36.91613839546868, + -12.826004866809171, ] `; exports[`location > 1211 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = ` [ - 36.97323069464518, - -12.944459340163235, + 36.94789219602537, + -12.891887302377313, ] `; exports[`location > 1211 > nearbyGPSCoordinate > with radius and isMetric 1`] = ` [ 77.1337, - -14.7545, + 141.6498, ] `; @@ -294,7 +294,7 @@ exports[`location > 1211 > ordinalDirection > with abbreviated option 1`] = `"SW exports[`location > 1211 > ordinalDirection > with boolean 1`] = `"Southwest"`; -exports[`location > 1211 > secondaryAddress 1`] = `"Suite 587"`; +exports[`location > 1211 > secondaryAddress 1`] = `"Suite 929"`; exports[`location > 1211 > state > noArgs 1`] = `"Washington"`; @@ -302,25 +302,25 @@ exports[`location > 1211 > state > with options 1`] = `"WA"`; exports[`location > 1211 > stateAbbr 1`] = `"WA"`; -exports[`location > 1211 > street 1`] = `"Market Street"`; +exports[`location > 1211 > street 1`] = `"W Chestnut Street"`; -exports[`location > 1211 > streetAddress > noArgs 1`] = `"587 Breana Wells"`; +exports[`location > 1211 > streetAddress > noArgs 1`] = `"929 S Broad Street"`; -exports[`location > 1211 > streetAddress > with boolean 1`] = `"587 Breana Wells"`; +exports[`location > 1211 > streetAddress > with boolean 1`] = `"929 S Broad Street"`; -exports[`location > 1211 > streetAddress > with useFullAddress options 1`] = `"587 Breana Wells Apt. 716"`; +exports[`location > 1211 > streetAddress > with useFullAddress options 1`] = `"929 S Broad Street Suite 468"`; exports[`location > 1211 > timeZone 1`] = `"Pacific/Fiji"`; -exports[`location > 1211 > zipCode > noArgs 1`] = `"48721-9061"`; +exports[`location > 1211 > zipCode > noArgs 1`] = `"82966-7368"`; -exports[`location > 1211 > zipCode > with format option 1`] = `"948-721"`; +exports[`location > 1211 > zipCode > with format option 1`] = `"982-966"`; -exports[`location > 1211 > zipCode > with string 1`] = `"948"`; +exports[`location > 1211 > zipCode > with string 1`] = `"982"`; -exports[`location > 1211 > zipCodeByState > noArgs 1`] = `"48721-9061"`; +exports[`location > 1211 > zipCodeByState > noArgs 1`] = `"82966-7368"`; -exports[`location > 1337 > buildingNumber 1`] = `"61225"`; +exports[`location > 1337 > buildingNumber 1`] = `"22435"`; exports[`location > 1337 > cardinalDirection > noArgs 1`] = `"East"`; @@ -328,7 +328,7 @@ exports[`location > 1337 > cardinalDirection > with abbreviated option 1`] = `"E exports[`location > 1337 > cardinalDirection > with boolean 1`] = `"East"`; -exports[`location > 1337 > city 1`] = `"New Carmella"`; +exports[`location > 1337 > city 1`] = `"East Duane"`; exports[`location > 1337 > cityName 1`] = `"East Hartford"`; @@ -364,15 +364,15 @@ exports[`location > 1337 > latitude > with max and min option 1`] = `-4.7595`; exports[`location > 1337 > latitude > with max option 1`] = `-63.7976`; -exports[`location > 1337 > latitude > with max, min and precision option 1`] = `-4.7595064761`; +exports[`location > 1337 > latitude > with max, min and precision option 1`] = `-4.7595064997`; exports[`location > 1337 > latitude > with min 1`] = `16.2024`; exports[`location > 1337 > latitude > with min option 1`] = `16.2024`; -exports[`location > 1337 > latitude > with precision 1`] = `-42.835558285`; +exports[`location > 1337 > latitude > with precision 1`] = `-42.8355584972`; -exports[`location > 1337 > latitude > with precision option 1`] = `-42.835558285`; +exports[`location > 1337 > latitude > with precision option 1`] = `-42.8355584972`; exports[`location > 1337 > longitude > noArgs 1`] = `-85.6711`; @@ -382,69 +382,69 @@ exports[`location > 1337 > longitude > with max and min option 1`] = `-4.7595`; exports[`location > 1337 > longitude > with max option 1`] = `-130.2153`; -exports[`location > 1337 > longitude > with max, min and precision option 1`] = `-4.7595064761`; +exports[`location > 1337 > longitude > with max, min and precision option 1`] = `-4.7595064997`; exports[`location > 1337 > longitude > with min 1`] = `39.7847`; exports[`location > 1337 > longitude > with min option 1`] = `39.7847`; -exports[`location > 1337 > longitude > with precision 1`] = `-85.67111657`; +exports[`location > 1337 > longitude > with precision 1`] = `-85.6711169944`; -exports[`location > 1337 > longitude > with precision option 1`] = `-85.67111657`; +exports[`location > 1337 > longitude > with precision option 1`] = `-85.6711169944`; exports[`location > 1337 > nearbyGPSCoordinate > near origin 1`] = ` [ - 0.08055259537977688, - -0.006097651409731952, + 0.022796893471297014, + -0.00172567387755862, ] `; exports[`location > 1337 > nearbyGPSCoordinate > noArgs 1`] = ` [ -42.8356, - 21.7907, + -122.8738, ] `; exports[`location > 1337 > nearbyGPSCoordinate > only isMetric 1`] = ` [ -42.8356, - 21.7907, + -122.8738, ] `; exports[`location > 1337 > nearbyGPSCoordinate > only radius 1`] = ` [ -42.8356, - 21.7907, + -122.8738, ] `; exports[`location > 1337 > nearbyGPSCoordinate > with origin and isMetric 1`] = ` [ - 37.05004958398222, - -13.003788641630877, + 37.014162112434576, + -13.001072040254485, ] `; exports[`location > 1337 > nearbyGPSCoordinate > with origin and radius 1`] = ` [ - 37.12082442834317, - -13.009146139144832, + 37.034199804933436, + -13.002588848786104, ] `; exports[`location > 1337 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = ` [ - 37.07507884069983, - -13.00568330041608, + 37.02125209810485, + -13.001608736321373, ] `; exports[`location > 1337 > nearbyGPSCoordinate > with radius and isMetric 1`] = ` [ -42.8356, - 21.7907, + -122.8738, ] `; @@ -454,7 +454,7 @@ exports[`location > 1337 > ordinalDirection > with abbreviated option 1`] = `"NW exports[`location > 1337 > ordinalDirection > with boolean 1`] = `"Northwest"`; -exports[`location > 1337 > secondaryAddress 1`] = `"Apt. 612"`; +exports[`location > 1337 > secondaryAddress 1`] = `"Apt. 224"`; exports[`location > 1337 > state > noArgs 1`] = `"Indiana"`; @@ -462,20 +462,20 @@ exports[`location > 1337 > state > with options 1`] = `"IN"`; exports[`location > 1337 > stateAbbr 1`] = `"IN"`; -exports[`location > 1337 > street 1`] = `"Kellen Crest"`; +exports[`location > 1337 > street 1`] = `"Carmella Forge"`; -exports[`location > 1337 > streetAddress > noArgs 1`] = `"61225 Barton Gateway"`; +exports[`location > 1337 > streetAddress > noArgs 1`] = `"22435 Westley Ridges"`; -exports[`location > 1337 > streetAddress > with boolean 1`] = `"61225 Barton Gateway"`; +exports[`location > 1337 > streetAddress > with boolean 1`] = `"22435 Westley Ridges"`; -exports[`location > 1337 > streetAddress > with useFullAddress options 1`] = `"61225 Barton Gateway Apt. 552"`; +exports[`location > 1337 > streetAddress > with useFullAddress options 1`] = `"22435 Westley Ridges Apt. 461"`; exports[`location > 1337 > timeZone 1`] = `"America/Guatemala"`; -exports[`location > 1337 > zipCode > noArgs 1`] = `"51225"`; +exports[`location > 1337 > zipCode > noArgs 1`] = `"12435"`; -exports[`location > 1337 > zipCode > with format option 1`] = `"251-225"`; +exports[`location > 1337 > zipCode > with format option 1`] = `"212-435"`; -exports[`location > 1337 > zipCode > with string 1`] = `"251"`; +exports[`location > 1337 > zipCode > with string 1`] = `"212"`; -exports[`location > 1337 > zipCodeByState > noArgs 1`] = `"51225"`; +exports[`location > 1337 > zipCodeByState > noArgs 1`] = `"12435"`; diff --git a/test/modules/__snapshots__/lorem.spec.ts.snap b/test/modules/__snapshots__/lorem.spec.ts.snap index fc372d40d4a..041580d6599 100644 --- a/test/modules/__snapshots__/lorem.spec.ts.snap +++ b/test/modules/__snapshots__/lorem.spec.ts.snap @@ -1,105 +1,105 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`lorem > 42 > lines > noArgs 1`] = ` -"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. -Adsum degenero usitas." +"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. +Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud." `; exports[`lorem > 42 > lines > with length 1`] = ` -"Theca virga auctus synagoga tergum. -Patria armarium decumbo armarium alveus adsum degenero. -Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono. -Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. -Absens custodia acervus clamo esse perspiciatis cubo. -Adipiscor claro voluptate copiose. -Defleo alioqui territo quae. -Crebro doloribus vorago omnis. -Adipiscor undique pectus sponte assumenda defendo. -Abutor vinum vilitas." +"Virga synagoga patruus armarium armarium. +Usitas paulatim suggero. +Volubilis tristis benevolentia. +Auctus cognomen esse custodia. +Perspiciatis apud claro copiose defleo. +Aveho doloribus omnis adipiscor pectus assumenda advoco vinum vociferor. +Cogo alter stella decerno animus deputo adeo verbera caute. +Color eius incidunt audacia volubilis terga vigor varius. +Verus alienus autus adipisci comparo creta cernuus. +Consuasor cicuta illo aqua thorax aestas vos ter avarus." `; exports[`lorem > 42 > lines > with length range 1`] = ` -"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. -Adsum degenero usitas. -Paulatim aranea suggero soleo accusator. -Volubilis suppono tristis. -Benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis esse absens. -Acervus clamo esse perspiciatis cubo apud. -Claro voluptate copiose. -Defleo alioqui territo quae. -Crebro doloribus vorago omnis. -Adipiscor undique pectus sponte assumenda defendo. -Abutor vinum vilitas. -Magnam titulus creptio cogo accendo alter callide stella caput decerno. -Animus pel deputo triumphus adeo atavus verbera crinis. -Auctor somniculosus temeritas color currus." +"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. +Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. +Copiose defleo territo aveho doloribus. +Adipiscor pectus assumenda advoco vinum vociferor titulus. +Alter stella decerno animus deputo. +Verbera caute somniculosus. +Eius incidunt audacia volubilis terga. +Varius patrocinor verus alienus autus adipisci comparo creta cernuus tribuo. +Cicuta illo aqua thorax aestas. +Ter avarus abscido tot suffragium suspendo tepidus aer contego ancilla. +Qui comptus adversus colo communis suspendo repellendus valens demens. +Summisse temptatio laudantium. +Depulso eos cursus acies amita addo repellat comburo dolor. +Carus cunae temeritas calco aestus clam arx vetus titulus recusandae." `; -exports[`lorem > 42 > paragraph > noArgs 1`] = `"Theca virga auctus synagoga tergum. Patria armarium decumbo armarium alveus adsum degenero. Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono."`; +exports[`lorem > 42 > paragraph > noArgs 1`] = `"Virga synagoga patruus armarium armarium. Usitas paulatim suggero. Volubilis tristis benevolentia."`; -exports[`lorem > 42 > paragraph > with length 1`] = `"Theca virga auctus synagoga tergum. Patria armarium decumbo armarium alveus adsum degenero. Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono. Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo. Adipiscor claro voluptate copiose. Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo. Abutor vinum vilitas."`; +exports[`lorem > 42 > paragraph > with length 1`] = `"Virga synagoga patruus armarium armarium. Usitas paulatim suggero. Volubilis tristis benevolentia. Auctus cognomen esse custodia. Perspiciatis apud claro copiose defleo. Aveho doloribus omnis adipiscor pectus assumenda advoco vinum vociferor. Cogo alter stella decerno animus deputo adeo verbera caute. Color eius incidunt audacia volubilis terga vigor varius. Verus alienus autus adipisci comparo creta cernuus. Consuasor cicuta illo aqua thorax aestas vos ter avarus."`; -exports[`lorem > 42 > paragraph > with length range 1`] = `"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. Adsum degenero usitas. Paulatim aranea suggero soleo accusator. Volubilis suppono tristis. Benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis esse absens. Acervus clamo esse perspiciatis cubo apud. Claro voluptate copiose. Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo. Abutor vinum vilitas. Magnam titulus creptio cogo accendo alter callide stella caput decerno. Animus pel deputo triumphus adeo atavus verbera crinis. Auctor somniculosus temeritas color currus."`; +exports[`lorem > 42 > paragraph > with length range 1`] = `"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus. Eius incidunt audacia volubilis terga. Varius patrocinor verus alienus autus adipisci comparo creta cernuus tribuo. Cicuta illo aqua thorax aestas. Ter avarus abscido tot suffragium suspendo tepidus aer contego ancilla. Qui comptus adversus colo communis suspendo repellendus valens demens. Summisse temptatio laudantium. Depulso eos cursus acies amita addo repellat comburo dolor. Carus cunae temeritas calco aestus clam arx vetus titulus recusandae."`; exports[`lorem > 42 > paragraphs > noArgs 1`] = ` -"Theca virga auctus synagoga tergum. Patria armarium decumbo armarium alveus adsum degenero. Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono. -Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo. Adipiscor claro voluptate copiose. -Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo." +"Virga synagoga patruus armarium armarium. Usitas paulatim suggero. Volubilis tristis benevolentia. +Auctus cognomen esse custodia. Perspiciatis apud claro copiose defleo. Aveho doloribus omnis adipiscor pectus assumenda advoco vinum vociferor. +Cogo alter stella decerno animus deputo adeo verbera caute. Color eius incidunt audacia volubilis terga vigor varius. Verus alienus autus adipisci comparo creta cernuus." `; exports[`lorem > 42 > paragraphs > with length 1`] = ` -"Theca virga auctus synagoga tergum. Patria armarium decumbo armarium alveus adsum degenero. Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono. -Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo. Adipiscor claro voluptate copiose. -Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo. -Abutor vinum vilitas. Magnam titulus creptio cogo accendo alter callide stella caput decerno. Animus pel deputo triumphus adeo atavus verbera crinis. -Auctor somniculosus temeritas color currus. Beatus incidunt minus audacia addo volubilis turbo. Defaeco vigor crur varius vester patrocinor suscipio verus compello. -Molestiae autus eligendi. Vito comparo tutamen. Tametsi cernuus harum tribuo ocer consuasor. -Cicuta pectus illo cetera aqua clementia thorax asperiores aestas accendo. Curo ter crur avarus claudeo abscido accedo tot avarus suffragium. Suspendo texo tepidus pecto aer vester contego soleo. -Veritas urbanus ullam. Defaeco comptus allatus adversus correptius colo sortitus. Sophismata suspendo officiis repellendus cervus. -Laudantium demens crebro animadverto volup summisse ulciscor temptatio suppono laudantium. Tepidus cattus depulso adhaero. Sulum cursus amor acies decens amita baiulus. -Vehemens repellat demo. Magnam dolor sub venustas apud. Peccatus cunae harum temeritas." +"Virga synagoga patruus armarium armarium. Usitas paulatim suggero. Volubilis tristis benevolentia. +Auctus cognomen esse custodia. Perspiciatis apud claro copiose defleo. Aveho doloribus omnis adipiscor pectus assumenda advoco vinum vociferor. +Cogo alter stella decerno animus deputo adeo verbera caute. Color eius incidunt audacia volubilis terga vigor varius. Verus alienus autus adipisci comparo creta cernuus. +Consuasor cicuta illo aqua thorax aestas vos ter avarus. Tot suffragium suspendo. Aer contego ancilla urbanus qui comptus adversus colo communis. +Repellendus valens demens animadverto summisse temptatio laudantium tepidus. Eos cursus acies amita addo repellat. Dolor venustas carus cunae temeritas. +Aestus clam arx vetus. Recusandae ut thymbra audentia vapulus fugit timor vel cometes. Calcar curso toties. +Absconditus dolorem cur brevis animadverto confero vilitas commodi earum. Convoco volup vivo caste derideo coerceo cinis adfectus. Desolo admoneo cibo ver capto arbor deporto. +Carbo spectaculum temptatio capio suscipit corona ratione recusandae facilis alioqui. Commemoro audentia adhaero officiis spiculum acceptus doloremque calamitas similique. Studio crepusculum video apto. +Amplitudo vesper utpote causa solutio. Itaque ex carbo aliquid velit velut recusandae confido conscendo. Velit valens termes sapiente ago arx velociter pecto. +Ambitus somnus abscido. Inflammatio stultus solio caelestis. Capio comparo tamen sodalitas ulciscor solum minus aliquid." `; exports[`lorem > 42 > paragraphs > with length range 1`] = ` -"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. Adsum degenero usitas. Paulatim aranea suggero soleo accusator. -Volubilis suppono tristis. Benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis esse absens. Acervus clamo esse perspiciatis cubo apud. -Claro voluptate copiose. Defleo alioqui territo quae. Crebro doloribus vorago omnis. -Adipiscor undique pectus sponte assumenda defendo. Abutor vinum vilitas. Magnam titulus creptio cogo accendo alter callide stella caput decerno. -Animus pel deputo triumphus adeo atavus verbera crinis. Auctor somniculosus temeritas color currus. Beatus incidunt minus audacia addo volubilis turbo. -Defaeco vigor crur varius vester patrocinor suscipio verus compello. Molestiae autus eligendi. Vito comparo tutamen. -Tametsi cernuus harum tribuo ocer consuasor. Cicuta pectus illo cetera aqua clementia thorax asperiores aestas accendo. Curo ter crur avarus claudeo abscido accedo tot avarus suffragium. -Suspendo texo tepidus pecto aer vester contego soleo. Veritas urbanus ullam. Defaeco comptus allatus adversus correptius colo sortitus. -Sophismata suspendo officiis repellendus cervus. Laudantium demens crebro animadverto volup summisse ulciscor temptatio suppono laudantium. Tepidus cattus depulso adhaero. -Sulum cursus amor acies decens amita baiulus. Vehemens repellat demo. Magnam dolor sub venustas apud. -Peccatus cunae harum temeritas. Calco vilitas aestus patruus. Sub arx utrum vetus quia. -Clementia recusandae amiculum ut defluo thymbra blanditiis audentia cur. Vacuus fugit communis timor animus vel constans cometes ventus amo. Calcar socius curso a toties. -Undique cogo absconditus asper dolorem. Cur deorsum brevis stultus animadverto centum confero. Vilitas asporto commodi blanditiis. -Labore succedo culpo convoco advoco volup catena. Caritas caste subito derideo summa coerceo arceo cinis vulpes adfectus. Peior voluptatibus desolo cunctatio admoneo." +"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. +Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus. +Eius incidunt audacia volubilis terga. Varius patrocinor verus alienus autus adipisci comparo creta cernuus tribuo. Cicuta illo aqua thorax aestas. +Ter avarus abscido tot suffragium suspendo tepidus aer contego ancilla. Qui comptus adversus colo communis suspendo repellendus valens demens. Summisse temptatio laudantium. +Depulso eos cursus acies amita addo repellat comburo dolor. Carus cunae temeritas calco aestus clam arx vetus titulus recusandae. Thymbra audentia vapulus fugit timor vel cometes amo calcar. +Toties undique absconditus dolorem cur brevis. Confero vilitas commodi. Succedo convoco volup vivo caste derideo coerceo. +Adfectus peior desolo admoneo cibo. Capto arbor deporto voro carbo spectaculum temptatio capio suscipit corona. Recusandae facilis alioqui truculenter commemoro audentia adhaero officiis. +Acceptus doloremque calamitas similique ater studio crepusculum video. Confugo amplitudo vesper utpote. Solutio totidem itaque ex carbo. +Velit velut recusandae. Conscendo sursum velit valens termes. Ago arx velociter pecto absque ambitus somnus abscido. +Inflammatio stultus solio caelestis. Capio comparo tamen sodalitas ulciscor solum minus aliquid. Celo careo voluptate crudelis vapulus. +Theatrum desolo neque depromo autus suppono cicuta acidus. Atqui vilicus viriliter vergo corpus accendo vestrum cursus. Vix ultio claustrum creo ullus comes assentator iusto video subito. +Alter possimus vulariter apud eaque utpote talio. Subvenio contigo claudeo tolero tollo usque vereor dolorem. Theologus sol subvenio theatrum validus confero coruscus. +Nesciunt adeptio deleniti. Cito officiis adaugeo adfero traho contigo antepono. Tepesco bibo qui ait admoneo excepturi hic. +Sursum voluptates ducimus commodi theatrum cerno decens aeternus. Vivo tubineus subito. Atavus aro carus inflammatio summopere solutio." `; -exports[`lorem > 42 > sentence > noArgs 1`] = `"Theca virga auctus synagoga tergum."`; +exports[`lorem > 42 > sentence > noArgs 1`] = `"Virga synagoga patruus armarium armarium."`; -exports[`lorem > 42 > sentence > with length 1`] = `"Corrupti theca virga auctus synagoga tergum patruus patria armarium decumbo."`; +exports[`lorem > 42 > sentence > with length 1`] = `"Corrupti virga synagoga patruus armarium armarium adsum usitas paulatim suggero."`; -exports[`lorem > 42 > sentence > with length range 1`] = `"Theca virga auctus synagoga tergum patruus patria armarium decumbo armarium alveus adsum degenero usitas."`; +exports[`lorem > 42 > sentence > with length range 1`] = `"Virga synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis tristis benevolentia attonbitus."`; -exports[`lorem > 42 > sentences > noArgs 1`] = `"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. Adsum degenero usitas. Paulatim aranea suggero soleo accusator."`; +exports[`lorem > 42 > sentences > noArgs 1`] = `"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus."`; -exports[`lorem > 42 > sentences > with length 1`] = `"Theca virga auctus synagoga tergum. Patria armarium decumbo armarium alveus adsum degenero. Concido paulatim aranea suggero soleo accusator adstringo volubilis suppono. Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo. Adipiscor claro voluptate copiose. Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo. Abutor vinum vilitas."`; +exports[`lorem > 42 > sentences > with length 1`] = `"Virga synagoga patruus armarium armarium. Usitas paulatim suggero. Volubilis tristis benevolentia. Auctus cognomen esse custodia. Perspiciatis apud claro copiose defleo. Aveho doloribus omnis adipiscor pectus assumenda advoco vinum vociferor. Cogo alter stella decerno animus deputo adeo verbera caute. Color eius incidunt audacia volubilis terga vigor varius. Verus alienus autus adipisci comparo creta cernuus. Consuasor cicuta illo aqua thorax aestas vos ter avarus."`; -exports[`lorem > 42 > sentences > with length range 1`] = `"Virga auctus synagoga tergum patruus patria armarium decumbo armarium. Adsum degenero usitas. Paulatim aranea suggero soleo accusator. Volubilis suppono tristis. Benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis esse absens. Acervus clamo esse perspiciatis cubo apud. Claro voluptate copiose. Defleo alioqui territo quae. Crebro doloribus vorago omnis. Adipiscor undique pectus sponte assumenda defendo. Abutor vinum vilitas. Magnam titulus creptio cogo accendo alter callide stella caput decerno. Animus pel deputo triumphus adeo atavus verbera crinis. Auctor somniculosus temeritas color currus."`; +exports[`lorem > 42 > sentences > with length range 1`] = `"Synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis. Benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus. Eius incidunt audacia volubilis terga. Varius patrocinor verus alienus autus adipisci comparo creta cernuus tribuo. Cicuta illo aqua thorax aestas. Ter avarus abscido tot suffragium suspendo tepidus aer contego ancilla. Qui comptus adversus colo communis suspendo repellendus valens demens. Summisse temptatio laudantium. Depulso eos cursus acies amita addo repellat comburo dolor. Carus cunae temeritas calco aestus clam arx vetus titulus recusandae."`; -exports[`lorem > 42 > slug > noArgs 1`] = `"corrupti-theca-virga"`; +exports[`lorem > 42 > slug > noArgs 1`] = `"corrupti-virga-synagoga"`; -exports[`lorem > 42 > slug > with length 1`] = `"corrupti-theca-virga-auctus-synagoga-tergum-patruus-patria-armarium-decumbo"`; +exports[`lorem > 42 > slug > with length 1`] = `"corrupti-virga-synagoga-patruus-armarium-armarium-adsum-usitas-paulatim-suggero"`; -exports[`lorem > 42 > slug > with length range 1`] = `"theca-virga-auctus-synagoga-tergum-patruus-patria-armarium-decumbo-armarium-alveus-adsum-degenero-usitas"`; +exports[`lorem > 42 > slug > with length range 1`] = `"virga-synagoga-patruus-armarium-armarium-adsum-usitas-paulatim-suggero-accusator-volubilis-tristis-benevolentia-attonbitus"`; -exports[`lorem > 42 > text > noArgs 1`] = `"Auctus synagoga tergum patruus patria armarium decumbo armarium alveus adsum. Usitas concido paulatim aranea suggero soleo. Adstringo volubilis suppono. Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo."`; +exports[`lorem > 42 > text > noArgs 1`] = `"Patruus armarium armarium adsum usitas paulatim suggero accusator. Tristis benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus."`; -exports[`lorem > 42 > text > with length 1`] = `"Auctus synagoga tergum patruus patria armarium decumbo armarium alveus adsum. Usitas concido paulatim aranea suggero soleo. Adstringo volubilis suppono. Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo."`; +exports[`lorem > 42 > text > with length 1`] = `"Patruus armarium armarium adsum usitas paulatim suggero accusator. Tristis benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus."`; -exports[`lorem > 42 > text > with length range 1`] = `"Auctus synagoga tergum patruus patria armarium decumbo armarium alveus adsum. Usitas concido paulatim aranea suggero soleo. Adstringo volubilis suppono. Vigilo benevolentia a attonbitus vulgivagus auctus provident cognomen perspiciatis. Absens custodia acervus clamo esse perspiciatis cubo."`; +exports[`lorem > 42 > text > with length range 1`] = `"Patruus armarium armarium adsum usitas paulatim suggero accusator. Tristis benevolentia attonbitus auctus cognomen esse custodia clamo perspiciatis apud. Copiose defleo territo aveho doloribus. Adipiscor pectus assumenda advoco vinum vociferor titulus. Alter stella decerno animus deputo. Verbera caute somniculosus."`; exports[`lorem > 42 > word > noArgs 1`] = `"corrupti"`; @@ -111,138 +111,144 @@ exports[`lorem > 42 > word > with options.length and options.strategy 1`] = `"ex exports[`lorem > 42 > word > with options.strategy 1`] = `"a"`; -exports[`lorem > 42 > words > noArgs 1`] = `"corrupti theca virga"`; +exports[`lorem > 42 > words > noArgs 1`] = `"corrupti virga synagoga"`; -exports[`lorem > 42 > words > with length 1`] = `"corrupti theca virga auctus synagoga tergum patruus patria armarium decumbo"`; +exports[`lorem > 42 > words > with length 1`] = `"corrupti virga synagoga patruus armarium armarium adsum usitas paulatim suggero"`; -exports[`lorem > 42 > words > with length range 1`] = `"theca virga auctus synagoga tergum patruus patria armarium decumbo armarium alveus adsum degenero usitas"`; +exports[`lorem > 42 > words > with length range 1`] = `"virga synagoga patruus armarium armarium adsum usitas paulatim suggero accusator volubilis tristis benevolentia attonbitus"`; exports[`lorem > 1211 > lines > noArgs 1`] = ` -"Varietas tergo caelum aperio vulpes adficio. -Articulus stillicidium bene tendo curiositas considero ascit suasoria. -Tonsor accendo tenuis sophismata sollers sursum tripudio vester. -Coaegresco usque vorax unde voveo blanditiis. -Officia ventus aveho argentum corpus quas." +"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. +Dapifer usque unde blanditiis officia aveho corpus votum tener. +Video expedita voluptas caelestis coepi suffragium. +Conscendo ulciscor crastinus celer color atque laboriosam. +Apud subseco depromo caries cunabula bellicus tutis nemo." `; exports[`lorem > 1211 > lines > with length 1`] = ` -"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. -Tendo curiositas considero ascit. -Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio. -Dapifer coaegresco usque vorax unde voveo blanditiis defero officia ventus. -Argentum corpus quas votum. -Tener abstergo crux cogo video accommodo. -Curiositas voluptas articulus caelestis nesciunt coepi atque. -Cresco eligendi vereor conscendo voro ulciscor colo crastinus. -Celer cubo color necessitatibus atque aetas laboriosam. -Suasoria caelum apud adhaero." +"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. +Tripudio dapifer usque unde blanditiis officia aveho corpus. +Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo. +Cunabula bellicus tutis nemo. +Adficio subito auctor suggero cetera tergeo. +Delectus bis perspiciatis ut amaritudo ullus deinde. +Delicate nam tolero impedit vicinus voluntarius. +Uter blanditiis supellex trucido conforto validus accusator infit tempus. +Aggero censura approbo cibo beneficium verbera." `; exports[`lorem > 1211 > lines > with length range 1`] = ` -"Varietas tergo caelum aperio vulpes adficio. -Articulus stillicidium bene tendo curiositas considero ascit suasoria. -Tonsor accendo tenuis sophismata sollers sursum tripudio vester. -Coaegresco usque vorax unde voveo blanditiis. -Officia ventus aveho argentum corpus quas. -Decipio tener abstergo crux cogo video accommodo expedita curiositas voluptas. -Caelestis nesciunt coepi atque. -Cresco eligendi vereor conscendo voro ulciscor colo crastinus. -Celer cubo color necessitatibus atque aetas laboriosam. -Suasoria caelum apud adhaero. -Tutis depromo repellendus caries bardus cunabula curvo bellicus. -Tutis cur nemo minima dens aetas adficio. -Subito inventore auctor quasi suggero deserunt cetera architecto. -Sordeo dolores sublime delectus dens bis argumentum perspiciatis illum. -Dedecor amaritudo esse ullus deinde deinde adulatio corrupti nulla. -Sum nam alienus tolero vae impedit. -Vicinus viriliter voluntarius talio tonsor alius uter. -Blanditiis subnecto supellex. -Trucido deprecator conforto nulla validus ab accusator tametsi. -Creator tempus votum delibero censura aggero ustulo." +"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. +Dapifer usque unde blanditiis officia aveho corpus votum tener. +Video expedita voluptas caelestis coepi suffragium. +Conscendo ulciscor crastinus celer color atque laboriosam. +Apud subseco depromo caries cunabula bellicus tutis nemo. +Adficio subito auctor suggero cetera tergeo. +Delectus bis perspiciatis ut amaritudo ullus deinde. +Delicate nam tolero impedit vicinus voluntarius. +Uter blanditiis supellex trucido conforto validus accusator infit tempus. +Aggero censura approbo cibo beneficium verbera. +Cupio aureus perferendis magnam non praesentium tonsor recusandae tricesimus tantum. +Ver facilis conicio fuga dedico conor triduana avaritia vindico. +Cariosus adficio vestigium. +Versus pariatur vitae vos conservo provident. +Ventosus aperte esse sto tabella cattus trucido vicissitudo armarium. +Aer dapifer reiciendis comburo acquiro calamitas calculus vespillo. +Socius facere somnus pariatur velum dedico delibero. +Iste acervus molestias delicate decerno allatus quia cur arcus. +Desolo vesco votum thorax. +Deludo degero virga utrum sapiente pectus verto tot aestas." `; -exports[`lorem > 1211 > paragraph > noArgs 1`] = `"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. Tendo curiositas considero ascit. Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio."`; +exports[`lorem > 1211 > paragraph > noArgs 1`] = `"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. Tripudio dapifer usque unde blanditiis officia aveho corpus. Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo."`; -exports[`lorem > 1211 > paragraph > with length 1`] = `"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. Tendo curiositas considero ascit. Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio. Dapifer coaegresco usque vorax unde voveo blanditiis defero officia ventus. Argentum corpus quas votum. Tener abstergo crux cogo video accommodo. Curiositas voluptas articulus caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. Suasoria caelum apud adhaero."`; +exports[`lorem > 1211 > paragraph > with length 1`] = `"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. Tripudio dapifer usque unde blanditiis officia aveho corpus. Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. Crastinus celer color atque laboriosam suasoria apud subseco depromo. Cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. Aggero censura approbo cibo beneficium verbera."`; -exports[`lorem > 1211 > paragraph > with length range 1`] = `"Varietas tergo caelum aperio vulpes adficio. Articulus stillicidium bene tendo curiositas considero ascit suasoria. Tonsor accendo tenuis sophismata sollers sursum tripudio vester. Coaegresco usque vorax unde voveo blanditiis. Officia ventus aveho argentum corpus quas. Decipio tener abstergo crux cogo video accommodo expedita curiositas voluptas. Caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. Suasoria caelum apud adhaero. Tutis depromo repellendus caries bardus cunabula curvo bellicus. Tutis cur nemo minima dens aetas adficio. Subito inventore auctor quasi suggero deserunt cetera architecto. Sordeo dolores sublime delectus dens bis argumentum perspiciatis illum. Dedecor amaritudo esse ullus deinde deinde adulatio corrupti nulla. Sum nam alienus tolero vae impedit. Vicinus viriliter voluntarius talio tonsor alius uter. Blanditiis subnecto supellex. Trucido deprecator conforto nulla validus ab accusator tametsi. Creator tempus votum delibero censura aggero ustulo."`; +exports[`lorem > 1211 > paragraph > with length range 1`] = `"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. Dapifer usque unde blanditiis officia aveho corpus votum tener. Video expedita voluptas caelestis coepi suffragium. Conscendo ulciscor crastinus celer color atque laboriosam. Apud subseco depromo caries cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. Aggero censura approbo cibo beneficium verbera. Cupio aureus perferendis magnam non praesentium tonsor recusandae tricesimus tantum. Ver facilis conicio fuga dedico conor triduana avaritia vindico. Cariosus adficio vestigium. Versus pariatur vitae vos conservo provident. Ventosus aperte esse sto tabella cattus trucido vicissitudo armarium. Aer dapifer reiciendis comburo acquiro calamitas calculus vespillo. Socius facere somnus pariatur velum dedico delibero. Iste acervus molestias delicate decerno allatus quia cur arcus. Desolo vesco votum thorax. Deludo degero virga utrum sapiente pectus verto tot aestas."`; exports[`lorem > 1211 > paragraphs > noArgs 1`] = ` -"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. Tendo curiositas considero ascit. Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio. -Dapifer coaegresco usque vorax unde voveo blanditiis defero officia ventus. Argentum corpus quas votum. Tener abstergo crux cogo video accommodo. -Curiositas voluptas articulus caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam." +"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. Tripudio dapifer usque unde blanditiis officia aveho corpus. Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo. Cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. +Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus." `; exports[`lorem > 1211 > paragraphs > with length 1`] = ` -"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. Tendo curiositas considero ascit. Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio. -Dapifer coaegresco usque vorax unde voveo blanditiis defero officia ventus. Argentum corpus quas votum. Tener abstergo crux cogo video accommodo. -Curiositas voluptas articulus caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. -Suasoria caelum apud adhaero. Tutis depromo repellendus caries bardus cunabula curvo bellicus. Tutis cur nemo minima dens aetas adficio. -Subito inventore auctor quasi suggero deserunt cetera architecto. Sordeo dolores sublime delectus dens bis argumentum perspiciatis illum. Dedecor amaritudo esse ullus deinde deinde adulatio corrupti nulla. -Sum nam alienus tolero vae impedit. Vicinus viriliter voluntarius talio tonsor alius uter. Blanditiis subnecto supellex. -Trucido deprecator conforto nulla validus ab accusator tametsi. Creator tempus votum delibero censura aggero ustulo. Odit approbo labore cibo ver. -Debilito verbera varietas vulgus. Cupio corpus aureus defendo. Beatae magnam usque non torrens praesentium tantillus. -Praesentium recusandae umerus tricesimus similique tantum decet tutis ventito. Vilicus facilis sordeo conicio aggredior fuga bos dedico villa conor. Triduana abutor avaritia commodo vindico voveo. -Capitulus cariosus deripio. Compono vestigium summopere. Velit versus vivo pariatur casso vitae." +"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. Tripudio dapifer usque unde blanditiis officia aveho corpus. Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo. Cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. +Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. +Aggero censura approbo cibo beneficium verbera. Cupio aureus perferendis magnam non praesentium tonsor recusandae tricesimus tantum. Ver facilis conicio fuga dedico conor triduana avaritia vindico. +Cariosus adficio vestigium. Versus pariatur vitae vos conservo provident. Ventosus aperte esse sto tabella cattus trucido vicissitudo armarium. +Aer dapifer reiciendis comburo acquiro calamitas calculus vespillo. Socius facere somnus pariatur velum dedico delibero. Iste acervus molestias delicate decerno allatus quia cur arcus. +Desolo vesco votum thorax. Deludo degero virga utrum sapiente pectus verto tot aestas. Defero voluptatem tum vetus artificiose cultura. +Antiquus dedecor porro amitto conventus. Placeat quidem caste inventore decet. Catena totus vivo. +Vetus excepturi atavus terror soluta peccatus ab vomito xiphias sulum. Quo abeo pectus aperte anser. Voluptas acer cursim despecto toties somnus ut asperiores dens. +Umerus aduro cura cimentarius trucido. Cohaero desidero adopto decumbo comitatus quidem coma. Suscipit capitulus trans summopere deripio vetus demonstro non." `; exports[`lorem > 1211 > paragraphs > with length range 1`] = ` -"Varietas tergo caelum aperio vulpes adficio. Articulus stillicidium bene tendo curiositas considero ascit suasoria. Tonsor accendo tenuis sophismata sollers sursum tripudio vester. -Coaegresco usque vorax unde voveo blanditiis. Officia ventus aveho argentum corpus quas. Decipio tener abstergo crux cogo video accommodo expedita curiositas voluptas. -Caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. -Suasoria caelum apud adhaero. Tutis depromo repellendus caries bardus cunabula curvo bellicus. Tutis cur nemo minima dens aetas adficio. -Subito inventore auctor quasi suggero deserunt cetera architecto. Sordeo dolores sublime delectus dens bis argumentum perspiciatis illum. Dedecor amaritudo esse ullus deinde deinde adulatio corrupti nulla. -Sum nam alienus tolero vae impedit. Vicinus viriliter voluntarius talio tonsor alius uter. Blanditiis subnecto supellex. -Trucido deprecator conforto nulla validus ab accusator tametsi. Creator tempus votum delibero censura aggero ustulo. Odit approbo labore cibo ver. -Debilito verbera varietas vulgus. Cupio corpus aureus defendo. Beatae magnam usque non torrens praesentium tantillus. -Praesentium recusandae umerus tricesimus similique tantum decet tutis ventito. Vilicus facilis sordeo conicio aggredior fuga bos dedico villa conor. Triduana abutor avaritia commodo vindico voveo. -Capitulus cariosus deripio. Compono vestigium summopere. Velit versus vivo pariatur casso vitae. -Vos desino conservo culpa provident conitor tandem tumultus ventosus. Aperte velociter esse utrimque sto aranea tabella amor. Impedit trucido vado vicissitudo denuncio. -Carus suffoco sto aer. Dapifer depraedor reiciendis umbra comburo. Acquiro tempora calamitas succurro calculus sustineo vespillo vapulus patrocinor. -Socius averto facere calculus somnus. Pariatur complectus velum vitium dedico cometes delibero triumphus totus. Iste sortitus acervus. -Molestias tamdiu delicate. Decerno sint allatus repellendus. Super cur accedo arcus cursus asperiores volo. -Claudeo vesco sum votum canis thorax ullus. Cunae deludo utilis degero commodo virga tui utrum corroboro. Comitatus pectus ambulo verto atrocitas tot communis aestas. -Cupiditate vaco defero conturbo voluptatem volo tum confero vetus quo. Totam cultura ultio civis. Antiquus temptatio dedecor conculco porro. -Amitto quas conventus facere cogo error placeat vorax quidem textus. Commemoro inventore undique decet cilicium. Spoliatio catena vis. -Arceo vivo velut voluptate corona vetus tui excepturi harum. Demulceo terror virtus soluta. Peccatus cupiditas ab cometes vomito curso xiphias. -Sulum confido confugo. Quo cruentus abeo animi pectus. Aperte sequi anser pecco tepesco brevis voluptas aspicio acer rerum. -Vinco despecto suadeo toties cui somnus. Ut delibero asperiores surculus. Temptatio centum volva umerus terebro aduro." +"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. Dapifer usque unde blanditiis officia aveho corpus votum tener. Video expedita voluptas caelestis coepi suffragium. +Conscendo ulciscor crastinus celer color atque laboriosam. Apud subseco depromo caries cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. +Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. +Aggero censura approbo cibo beneficium verbera. Cupio aureus perferendis magnam non praesentium tonsor recusandae tricesimus tantum. Ver facilis conicio fuga dedico conor triduana avaritia vindico. +Cariosus adficio vestigium. Versus pariatur vitae vos conservo provident. Ventosus aperte esse sto tabella cattus trucido vicissitudo armarium. +Aer dapifer reiciendis comburo acquiro calamitas calculus vespillo. Socius facere somnus pariatur velum dedico delibero. Iste acervus molestias delicate decerno allatus quia cur arcus. +Desolo vesco votum thorax. Deludo degero virga utrum sapiente pectus verto tot aestas. Defero voluptatem tum vetus artificiose cultura. +Antiquus dedecor porro amitto conventus. Placeat quidem caste inventore decet. Catena totus vivo. +Vetus excepturi atavus terror soluta peccatus ab vomito xiphias sulum. Quo abeo pectus aperte anser. Voluptas acer cursim despecto toties somnus ut asperiores dens. +Umerus aduro cura cimentarius trucido. Cohaero desidero adopto decumbo comitatus quidem coma. Suscipit capitulus trans summopere deripio vetus demonstro non. +Amissio cuppedia amplitudo verbera degenero viscus. Rerum adeo bene adflicto autem cariosus annus creber antiquus. Consectetur umquam textilis copiose sui utpote sol clamo. +Pecco spiritus caput. Tempus validus surculus vulgivagus vitiosus. Adeptio vae adiuvo vere uxor abundans suus aeneus antepono bonus. +Balbus adduco aliqua absconditus apud talis sordeo apud demulceo. Tyrannus ipsum accusantium uterque paens accusamus cito supra summisse. Quo eum corroboro. +Tego cura timor vulnus comedo. Theca corona creator vociferor fuga cumque. Aegrus appositus calamitas volup colo abstergo sumo aperiam adipiscor natus. +Summopere magnam somniculosus laudantium terror blandior adhaero vilis decretum voluptatum. Desparatus amplexus aestivus supra libero viscus capio. Amo pectus vita. +Sunt cibo currus amita cumque a dignissimos. Complectus paulatim debitis explicabo. Deripio delectatio minima conduco contigo vinco aperiam. +Vitae bellum beatus. Confido amplitudo tero ratione facere cilicium. Crur veritas tui amicitia vulgus utrimque fugit. +Ratione audax praesentium uxor. Tener timor ars enim caecus suggero coma articulus quod. Truculenter desolo illo amoveo compono. +Umquam bos cedo. Brevis tabesco amicitia aspernatur approbo pel est. Congregatio vulgus territo pauci. +Synagoga vel iusto demergo aduro tergeo. Defetiscor vomer amoveo vicissitudo. Nisi ducimus decens thesis strues defleo verto ubi." `; -exports[`lorem > 1211 > sentence > noArgs 1`] = `"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium."`; +exports[`lorem > 1211 > sentence > noArgs 1`] = `"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis."`; -exports[`lorem > 1211 > sentence > with length 1`] = `"Vestrum degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus."`; +exports[`lorem > 1211 > sentence > with length 1`] = `"Vestrum varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor."`; -exports[`lorem > 1211 > sentence > with length range 1`] = `"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium bene tendo curiositas considero ascit suasoria tamisium tonsor accendo tenuis."`; +exports[`lorem > 1211 > sentence > with length range 1`] = `"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers tripudio dapifer usque unde blanditiis officia aveho corpus votum."`; -exports[`lorem > 1211 > sentences > noArgs 1`] = `"Varietas tergo caelum aperio vulpes adficio. Articulus stillicidium bene tendo curiositas considero ascit suasoria. Tonsor accendo tenuis sophismata sollers sursum tripudio vester. Coaegresco usque vorax unde voveo blanditiis. Officia ventus aveho argentum corpus quas. Decipio tener abstergo crux cogo video accommodo expedita curiositas voluptas."`; +exports[`lorem > 1211 > sentences > noArgs 1`] = `"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. Dapifer usque unde blanditiis officia aveho corpus votum tener. Video expedita voluptas caelestis coepi suffragium. Conscendo ulciscor crastinus celer color atque laboriosam. Apud subseco depromo caries cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo."`; -exports[`lorem > 1211 > sentences > with length 1`] = `"Degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium. Tendo curiositas considero ascit. Tamisium tonsor accendo tenuis sophismata sollers sursum tripudio. Dapifer coaegresco usque vorax unde voveo blanditiis defero officia ventus. Argentum corpus quas votum. Tener abstergo crux cogo video accommodo. Curiositas voluptas articulus caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. Suasoria caelum apud adhaero."`; +exports[`lorem > 1211 > sentences > with length 1`] = `"Varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis. Tripudio dapifer usque unde blanditiis officia aveho corpus. Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. Crastinus celer color atque laboriosam suasoria apud subseco depromo. Cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. Aggero censura approbo cibo beneficium verbera."`; -exports[`lorem > 1211 > sentences > with length range 1`] = `"Varietas tergo caelum aperio vulpes adficio. Articulus stillicidium bene tendo curiositas considero ascit suasoria. Tonsor accendo tenuis sophismata sollers sursum tripudio vester. Coaegresco usque vorax unde voveo blanditiis. Officia ventus aveho argentum corpus quas. Decipio tener abstergo crux cogo video accommodo expedita curiositas voluptas. Caelestis nesciunt coepi atque. Cresco eligendi vereor conscendo voro ulciscor colo crastinus. Celer cubo color necessitatibus atque aetas laboriosam. Suasoria caelum apud adhaero. Tutis depromo repellendus caries bardus cunabula curvo bellicus. Tutis cur nemo minima dens aetas adficio. Subito inventore auctor quasi suggero deserunt cetera architecto. Sordeo dolores sublime delectus dens bis argumentum perspiciatis illum. Dedecor amaritudo esse ullus deinde deinde adulatio corrupti nulla. Sum nam alienus tolero vae impedit. Vicinus viriliter voluntarius talio tonsor alius uter. Blanditiis subnecto supellex. Trucido deprecator conforto nulla validus ab accusator tametsi. Creator tempus votum delibero censura aggero ustulo."`; +exports[`lorem > 1211 > sentences > with length range 1`] = `"Caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers. Dapifer usque unde blanditiis officia aveho corpus votum tener. Video expedita voluptas caelestis coepi suffragium. Conscendo ulciscor crastinus celer color atque laboriosam. Apud subseco depromo caries cunabula bellicus tutis nemo. Adficio subito auctor suggero cetera tergeo. Delectus bis perspiciatis ut amaritudo ullus deinde. Delicate nam tolero impedit vicinus voluntarius. Uter blanditiis supellex trucido conforto validus accusator infit tempus. Aggero censura approbo cibo beneficium verbera. Cupio aureus perferendis magnam non praesentium tonsor recusandae tricesimus tantum. Ver facilis conicio fuga dedico conor triduana avaritia vindico. Cariosus adficio vestigium. Versus pariatur vitae vos conservo provident. Ventosus aperte esse sto tabella cattus trucido vicissitudo armarium. Aer dapifer reiciendis comburo acquiro calamitas calculus vespillo. Socius facere somnus pariatur velum dedico delibero. Iste acervus molestias delicate decerno allatus quia cur arcus. Desolo vesco votum thorax. Deludo degero virga utrum sapiente pectus verto tot aestas."`; -exports[`lorem > 1211 > slug > noArgs 1`] = `"vestrum-degenero-varietas"`; +exports[`lorem > 1211 > slug > noArgs 1`] = `"vestrum-varietas-caelum"`; -exports[`lorem > 1211 > slug > with length 1`] = `"vestrum-degenero-varietas-tergo-caelum-aperio-vulpes-adficio-spectaculum-articulus"`; +exports[`lorem > 1211 > slug > with length 1`] = `"vestrum-varietas-caelum-vulpes-spectaculum-stillicidium-tendo-considero-suasoria-tonsor"`; -exports[`lorem > 1211 > slug > with length range 1`] = `"degenero-varietas-tergo-caelum-aperio-vulpes-adficio-spectaculum-articulus-stillicidium-bene-tendo-curiositas-considero-ascit-suasoria-tamisium-tonsor-accendo-tenuis"`; +exports[`lorem > 1211 > slug > with length range 1`] = `"varietas-caelum-vulpes-spectaculum-stillicidium-tendo-considero-suasoria-tonsor-tenuis-sollers-tripudio-dapifer-usque-unde-blanditiis-officia-aveho-corpus-votum"`; exports[`lorem > 1211 > text > noArgs 1`] = ` -"Tergo caelum aperio vulpes adficio spectaculum articulus stillicidium bene tendo. -Considero ascit suasoria tamisium tonsor accendo. -Sophismata sollers sursum tripudio vester dapifer coaegresco usque vorax." +"Vulpes spectaculum stillicidium tendo. +Suasoria tonsor tenuis sollers tripudio. +Usque unde blanditiis officia aveho corpus. +Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo." `; exports[`lorem > 1211 > text > with length 1`] = ` -"Tergo caelum aperio vulpes adficio spectaculum articulus stillicidium bene tendo. -Considero ascit suasoria tamisium tonsor accendo. -Sophismata sollers sursum tripudio vester dapifer coaegresco usque vorax." +"Vulpes spectaculum stillicidium tendo. +Suasoria tonsor tenuis sollers tripudio. +Usque unde blanditiis officia aveho corpus. +Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo." `; exports[`lorem > 1211 > text > with length range 1`] = ` -"Tergo caelum aperio vulpes adficio spectaculum articulus stillicidium bene tendo. -Considero ascit suasoria tamisium tonsor accendo. -Sophismata sollers sursum tripudio vester dapifer coaegresco usque vorax." +"Vulpes spectaculum stillicidium tendo. +Suasoria tonsor tenuis sollers tripudio. +Usque unde blanditiis officia aveho corpus. +Tener crux video expedita voluptas caelestis coepi suffragium eligendi conscendo. +Crastinus celer color atque laboriosam suasoria apud subseco depromo." `; exports[`lorem > 1211 > word > noArgs 1`] = `"vestrum"`; @@ -255,108 +261,108 @@ exports[`lorem > 1211 > word > with options.length and options.strategy 1`] = `" exports[`lorem > 1211 > word > with options.strategy 1`] = `"a"`; -exports[`lorem > 1211 > words > noArgs 1`] = `"vestrum degenero varietas"`; +exports[`lorem > 1211 > words > noArgs 1`] = `"vestrum varietas caelum"`; -exports[`lorem > 1211 > words > with length 1`] = `"vestrum degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus"`; +exports[`lorem > 1211 > words > with length 1`] = `"vestrum varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor"`; -exports[`lorem > 1211 > words > with length range 1`] = `"degenero varietas tergo caelum aperio vulpes adficio spectaculum articulus stillicidium bene tendo curiositas considero ascit suasoria tamisium tonsor accendo tenuis"`; +exports[`lorem > 1211 > words > with length range 1`] = `"varietas caelum vulpes spectaculum stillicidium tendo considero suasoria tonsor tenuis sollers tripudio dapifer usque unde blanditiis officia aveho corpus votum"`; exports[`lorem > 1337 > lines > noArgs 1`] = ` -"Articulus benevolentia chirographum illo degenero ademptio commemoro. -Eaque omnis cedo conculco." +"Chirographum degenero commemoro eaque. +Voluptatibus tabella ancilla creptio quisquam." `; exports[`lorem > 1337 > lines > with length 1`] = ` -"Laborum articulus benevolentia chirographum illo. -Ademptio commemoro canto eaque omnis cedo. -Voluptatibus cerno tabella cohors ancilla. -Creptio allatus quisquam conventus ante talio vorago artificiose decipio. -Testimonium texo thalassinus abscido contra delectus cupressus creator nulla. -Temporibus corpus audeo demonstro civis urbanus spargo. -Desidero decet atrox aqua cupiditate tracto. -Velit exercitationem vestrum tristis. -Audax vita vita uxor currus torqueo desparatus. -Dolore suadeo accendo tui suus provident vulgo sono." +"Articulus chirographum degenero commemoro eaque. +Voluptatibus tabella ancilla creptio quisquam. +Vorago decipio testimonium thalassinus. +Cupressus nulla temporibus audeo civis. +Desidero atrox cupiditate avarus exercitationem tristis audax vita. +Desparatus dolore accendo suus vulgo ascisco. +Corrupti suadeo abbas corporis. +Testimonium consectetur subvenio. +Voluptas tubineus pel magni vulpes caterva. +Alienus vigor voluptate." `; exports[`lorem > 1337 > lines > with length range 1`] = ` -"Articulus benevolentia chirographum illo degenero ademptio commemoro. -Eaque omnis cedo conculco. -Cerno tabella cohors ancilla thorax creptio allatus quisquam conventus ante. -Vorago artificiose decipio unus testimonium texo thalassinus abscido. -Delectus cupressus creator nulla eius. -Corpus audeo demonstro civis urbanus spargo cultellus desidero decet. -Aqua cupiditate tracto avarus. -Exercitationem vestrum tristis quaerat audax vita vita uxor currus torqueo. -Stultus dolore suadeo accendo tui suus provident. -Sono ascisco defungo antepono cupressus corrupti quos suadeo timidus abbas. -Corporis ubi adsum temporibus testimonium vitium consectetur admoveo. -Est deprecator spiritus voluptas tamquam tubineus fugit pel." +"Chirographum degenero commemoro eaque. +Voluptatibus tabella ancilla creptio quisquam. +Vorago decipio testimonium thalassinus. +Cupressus nulla temporibus audeo civis. +Desidero atrox cupiditate avarus exercitationem tristis audax vita. +Desparatus dolore accendo suus vulgo ascisco. +Corrupti suadeo abbas corporis. +Testimonium consectetur subvenio. +Voluptas tubineus pel magni vulpes caterva. +Alienus vigor voluptate. +Confugo supra abstergo temporibus speciosus aufero. +Vere arx verbum communis subseco cena earum atrocitas." `; -exports[`lorem > 1337 > paragraph > noArgs 1`] = `"Laborum articulus benevolentia chirographum illo. Ademptio commemoro canto eaque omnis cedo. Voluptatibus cerno tabella cohors ancilla."`; +exports[`lorem > 1337 > paragraph > noArgs 1`] = `"Articulus chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus."`; -exports[`lorem > 1337 > paragraph > with length 1`] = `"Laborum articulus benevolentia chirographum illo. Ademptio commemoro canto eaque omnis cedo. Voluptatibus cerno tabella cohors ancilla. Creptio allatus quisquam conventus ante talio vorago artificiose decipio. Testimonium texo thalassinus abscido contra delectus cupressus creator nulla. Temporibus corpus audeo demonstro civis urbanus spargo. Desidero decet atrox aqua cupiditate tracto. Velit exercitationem vestrum tristis. Audax vita vita uxor currus torqueo desparatus. Dolore suadeo accendo tui suus provident vulgo sono."`; +exports[`lorem > 1337 > paragraph > with length 1`] = `"Articulus chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. Alienus vigor voluptate."`; -exports[`lorem > 1337 > paragraph > with length range 1`] = `"Articulus benevolentia chirographum illo degenero ademptio commemoro. Eaque omnis cedo conculco. Cerno tabella cohors ancilla thorax creptio allatus quisquam conventus ante. Vorago artificiose decipio unus testimonium texo thalassinus abscido. Delectus cupressus creator nulla eius. Corpus audeo demonstro civis urbanus spargo cultellus desidero decet. Aqua cupiditate tracto avarus. Exercitationem vestrum tristis quaerat audax vita vita uxor currus torqueo. Stultus dolore suadeo accendo tui suus provident. Sono ascisco defungo antepono cupressus corrupti quos suadeo timidus abbas. Corporis ubi adsum temporibus testimonium vitium consectetur admoveo. Est deprecator spiritus voluptas tamquam tubineus fugit pel."`; +exports[`lorem > 1337 > paragraph > with length range 1`] = `"Chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. Alienus vigor voluptate. Confugo supra abstergo temporibus speciosus aufero. Vere arx verbum communis subseco cena earum atrocitas."`; exports[`lorem > 1337 > paragraphs > noArgs 1`] = ` -"Laborum articulus benevolentia chirographum illo. Ademptio commemoro canto eaque omnis cedo. Voluptatibus cerno tabella cohors ancilla. -Creptio allatus quisquam conventus ante talio vorago artificiose decipio. Testimonium texo thalassinus abscido contra delectus cupressus creator nulla. Temporibus corpus audeo demonstro civis urbanus spargo. -Desidero decet atrox aqua cupiditate tracto. Velit exercitationem vestrum tristis. Audax vita vita uxor currus torqueo desparatus." +"Articulus chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. +Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. +Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva." `; exports[`lorem > 1337 > paragraphs > with length 1`] = ` -"Laborum articulus benevolentia chirographum illo. Ademptio commemoro canto eaque omnis cedo. Voluptatibus cerno tabella cohors ancilla. -Creptio allatus quisquam conventus ante talio vorago artificiose decipio. Testimonium texo thalassinus abscido contra delectus cupressus creator nulla. Temporibus corpus audeo demonstro civis urbanus spargo. -Desidero decet atrox aqua cupiditate tracto. Velit exercitationem vestrum tristis. Audax vita vita uxor currus torqueo desparatus. -Dolore suadeo accendo tui suus provident vulgo sono. Defungo antepono cupressus corrupti. Suadeo timidus abbas spiritus corporis ubi adsum temporibus. -Vitium consectetur admoveo subvenio est deprecator spiritus voluptas tamquam. Fugit pel celo magni tum vulpes tabesco caterva undique. Cognomen alienus peior. -Charisma voluptate vacuus deprecator civis confugo dolor supra arca abstergo. Temporibus valetudo speciosus fugiat aufero tener sophismata degero. Sopor arx itaque verbum texo communis utilis subseco universe cena. -Earum vomer atrocitas supra delibero. Deduco spectaculum crustulum vae textor denuncio. Cupio surculus adsum textus studio consequuntur. -Verbera corpus summisse. Velit denego curia balbus delibero somnus ventito. Recusandae deleo expedita accusantium capio celo vindico eveniet laboriosam arceo. -Despecto canto coerceo curtus crapula cruentus vulariter dolorem theatrum. Bonus statua laudantium acsi. Canis sui tabgo error victus comprehendo placeat ager. -Corona ultra abundans vulgivagus quod clementia. Cribro tandem subnecto cado consuasor brevis addo cribro. Deporto deorsum aveho administratio confido." +"Articulus chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. +Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. +Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. +Alienus vigor voluptate. Confugo supra abstergo temporibus speciosus aufero. Vere arx verbum communis subseco cena earum atrocitas. +Deduco crustulum textor depromo surculus textus. Verbera summisse velit curia delibero. Recusandae expedita capio vindico laboriosam templum canto curtus cruentus dolorem. +Statua acsi canis tabgo. Placeat cumque ultra vulgivagus clementia cribro subnecto consuasor addo conscendo. Administratio veritas surgo ter alo adfero. +Antea capio statim denique video. Audax audentia confido damnatio aestus repellat adsum. Solutio absorbeo tenax confido tergeo condico nisi astrum. +Cerno tam magnam velut infit acies aggero vis defleo. Spero quia inventore ventosus. Celebrer super deorsum cicuta adsum bardus rerum circumvenio decipio coniuratio. +Sollers vir ademptio iure saepe articulus. Cras doloremque nesciunt tutis subvenio quo admoneo adipisci. Terra succedo auxilium cernuus bibo cumque sollers. +Cicuta terminatio ulterius incidunt surculus. Tracto tredecim acceptus tabella sunt super. Viduo solus audeo sto vulariter vergo uredo adipiscor absens." `; exports[`lorem > 1337 > paragraphs > with length range 1`] = ` -"Articulus benevolentia chirographum illo degenero ademptio commemoro. Eaque omnis cedo conculco. Cerno tabella cohors ancilla thorax creptio allatus quisquam conventus ante. -Vorago artificiose decipio unus testimonium texo thalassinus abscido. Delectus cupressus creator nulla eius. Corpus audeo demonstro civis urbanus spargo cultellus desidero decet. -Aqua cupiditate tracto avarus. Exercitationem vestrum tristis quaerat audax vita vita uxor currus torqueo. Stultus dolore suadeo accendo tui suus provident. -Sono ascisco defungo antepono cupressus corrupti quos suadeo timidus abbas. Corporis ubi adsum temporibus testimonium vitium consectetur admoveo. Est deprecator spiritus voluptas tamquam tubineus fugit pel. -Magni tum vulpes tabesco caterva. Accedo cognomen alienus peior vigor charisma voluptate vacuus deprecator. Confugo dolor supra arca abstergo. -Temporibus valetudo speciosus fugiat aufero tener sophismata degero. Sopor arx itaque verbum texo communis utilis subseco universe cena. Earum vomer atrocitas supra delibero. -Deduco spectaculum crustulum vae textor denuncio. Cupio surculus adsum textus studio consequuntur. Verbera corpus summisse. -Velit denego curia balbus delibero somnus ventito. Recusandae deleo expedita accusantium capio celo vindico eveniet laboriosam arceo. Despecto canto coerceo curtus crapula cruentus vulariter dolorem theatrum. -Bonus statua laudantium acsi. Canis sui tabgo error victus comprehendo placeat ager. Corona ultra abundans vulgivagus quod clementia. -Cribro tandem subnecto cado consuasor brevis addo cribro. Deporto deorsum aveho administratio confido. Usus surgo demergo ter aranea alo vir adfero surgo caveo. -Antea abbas capio conduco statim. Denique comptus video deficio nobis caelestis audax tres audentia. Confido ademptio damnatio bos aestus certus repellat aegrus adsum degero. -Conor solutio complectus absorbeo thymum tenax ullus confido. Tergeo maiores condico thalassinus nisi aspicio astrum considero. Valens cerno pauci tam tersus magnam quas velut velum." +"Chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. +Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. +Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. +Alienus vigor voluptate. Confugo supra abstergo temporibus speciosus aufero. Vere arx verbum communis subseco cena earum atrocitas. +Deduco crustulum textor depromo surculus textus. Verbera summisse velit curia delibero. Recusandae expedita capio vindico laboriosam templum canto curtus cruentus dolorem. +Statua acsi canis tabgo. Placeat cumque ultra vulgivagus clementia cribro subnecto consuasor addo conscendo. Administratio veritas surgo ter alo adfero. +Antea capio statim denique video. Audax audentia confido damnatio aestus repellat adsum. Solutio absorbeo tenax confido tergeo condico nisi astrum. +Cerno tam magnam velut infit acies aggero vis defleo. Spero quia inventore ventosus. Celebrer super deorsum cicuta adsum bardus rerum circumvenio decipio coniuratio. +Sollers vir ademptio iure saepe articulus. Cras doloremque nesciunt tutis subvenio quo admoneo adipisci. Terra succedo auxilium cernuus bibo cumque sollers. +Cicuta terminatio ulterius incidunt surculus. Tracto tredecim acceptus tabella sunt super. Viduo solus audeo sto vulariter vergo uredo adipiscor absens. +Tabella suggero aro angustus arto trans culpo atrox. Adficio alius amoveo strenuus provident natus trepide tamdiu. Alias desino combibo ceno. +Substantia venustas defetiscor expedita tolero creta talus. Bene nesciunt suppellex appello torqueo tabula tam turpis tandem talio. Rerum tribuo trucido brevis somniculosus attero trado addo." `; -exports[`lorem > 1337 > sentence > noArgs 1`] = `"Laborum articulus benevolentia chirographum illo."`; +exports[`lorem > 1337 > sentence > noArgs 1`] = `"Articulus chirographum degenero commemoro eaque."`; -exports[`lorem > 1337 > sentence > with length 1`] = `"Cedo laborum articulus benevolentia chirographum illo degenero ademptio commemoro canto."`; +exports[`lorem > 1337 > sentence > with length 1`] = `"Cedo articulus chirographum degenero commemoro eaque cedo voluptatibus tabella ancilla."`; -exports[`lorem > 1337 > sentence > with length range 1`] = `"Laborum articulus benevolentia chirographum illo degenero ademptio commemoro canto eaque omnis cedo."`; +exports[`lorem > 1337 > sentence > with length range 1`] = `"Articulus chirographum degenero commemoro eaque cedo voluptatibus tabella ancilla creptio quisquam ante."`; -exports[`lorem > 1337 > sentences > noArgs 1`] = `"Articulus benevolentia chirographum illo degenero ademptio commemoro. Eaque omnis cedo conculco. Cerno tabella cohors ancilla thorax creptio allatus quisquam conventus ante."`; +exports[`lorem > 1337 > sentences > noArgs 1`] = `"Chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus."`; -exports[`lorem > 1337 > sentences > with length 1`] = `"Laborum articulus benevolentia chirographum illo. Ademptio commemoro canto eaque omnis cedo. Voluptatibus cerno tabella cohors ancilla. Creptio allatus quisquam conventus ante talio vorago artificiose decipio. Testimonium texo thalassinus abscido contra delectus cupressus creator nulla. Temporibus corpus audeo demonstro civis urbanus spargo. Desidero decet atrox aqua cupiditate tracto. Velit exercitationem vestrum tristis. Audax vita vita uxor currus torqueo desparatus. Dolore suadeo accendo tui suus provident vulgo sono."`; +exports[`lorem > 1337 > sentences > with length 1`] = `"Articulus chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. Alienus vigor voluptate."`; -exports[`lorem > 1337 > sentences > with length range 1`] = `"Articulus benevolentia chirographum illo degenero ademptio commemoro. Eaque omnis cedo conculco. Cerno tabella cohors ancilla thorax creptio allatus quisquam conventus ante. Vorago artificiose decipio unus testimonium texo thalassinus abscido. Delectus cupressus creator nulla eius. Corpus audeo demonstro civis urbanus spargo cultellus desidero decet. Aqua cupiditate tracto avarus. Exercitationem vestrum tristis quaerat audax vita vita uxor currus torqueo. Stultus dolore suadeo accendo tui suus provident. Sono ascisco defungo antepono cupressus corrupti quos suadeo timidus abbas. Corporis ubi adsum temporibus testimonium vitium consectetur admoveo. Est deprecator spiritus voluptas tamquam tubineus fugit pel."`; +exports[`lorem > 1337 > sentences > with length range 1`] = `"Chirographum degenero commemoro eaque. Voluptatibus tabella ancilla creptio quisquam. Vorago decipio testimonium thalassinus. Cupressus nulla temporibus audeo civis. Desidero atrox cupiditate avarus exercitationem tristis audax vita. Desparatus dolore accendo suus vulgo ascisco. Corrupti suadeo abbas corporis. Testimonium consectetur subvenio. Voluptas tubineus pel magni vulpes caterva. Alienus vigor voluptate. Confugo supra abstergo temporibus speciosus aufero. Vere arx verbum communis subseco cena earum atrocitas."`; -exports[`lorem > 1337 > slug > noArgs 1`] = `"cedo-laborum-articulus"`; +exports[`lorem > 1337 > slug > noArgs 1`] = `"cedo-articulus-chirographum"`; -exports[`lorem > 1337 > slug > with length 1`] = `"cedo-laborum-articulus-benevolentia-chirographum-illo-degenero-ademptio-commemoro-canto"`; +exports[`lorem > 1337 > slug > with length 1`] = `"cedo-articulus-chirographum-degenero-commemoro-eaque-cedo-voluptatibus-tabella-ancilla"`; -exports[`lorem > 1337 > slug > with length range 1`] = `"laborum-articulus-benevolentia-chirographum-illo-degenero-ademptio-commemoro-canto-eaque-omnis-cedo"`; +exports[`lorem > 1337 > slug > with length range 1`] = `"articulus-chirographum-degenero-commemoro-eaque-cedo-voluptatibus-tabella-ancilla-creptio-quisquam-ante"`; -exports[`lorem > 1337 > text > noArgs 1`] = `"Benevolentia chirographum illo degenero. Commemoro canto eaque. Cedo conculco voluptatibus cerno tabella cohors ancilla. Creptio allatus quisquam conventus ante talio vorago artificiose decipio."`; +exports[`lorem > 1337 > text > noArgs 1`] = `"Degenero commemoro eaque cedo voluptatibus. Ancilla creptio quisquam ante vorago decipio testimonium thalassinus."`; -exports[`lorem > 1337 > text > with length 1`] = `"Benevolentia chirographum illo degenero. Commemoro canto eaque. Cedo conculco voluptatibus cerno tabella cohors ancilla. Creptio allatus quisquam conventus ante talio vorago artificiose decipio."`; +exports[`lorem > 1337 > text > with length 1`] = `"Degenero commemoro eaque cedo voluptatibus. Ancilla creptio quisquam ante vorago decipio testimonium thalassinus."`; -exports[`lorem > 1337 > text > with length range 1`] = `"Benevolentia chirographum illo degenero. Commemoro canto eaque. Cedo conculco voluptatibus cerno tabella cohors ancilla. Creptio allatus quisquam conventus ante talio vorago artificiose decipio."`; +exports[`lorem > 1337 > text > with length range 1`] = `"Degenero commemoro eaque cedo voluptatibus. Ancilla creptio quisquam ante vorago decipio testimonium thalassinus."`; exports[`lorem > 1337 > word > noArgs 1`] = `"cedo"`; @@ -368,8 +374,8 @@ exports[`lorem > 1337 > word > with options.length and options.strategy 1`] = `" exports[`lorem > 1337 > word > with options.strategy 1`] = `"a"`; -exports[`lorem > 1337 > words > noArgs 1`] = `"cedo laborum articulus"`; +exports[`lorem > 1337 > words > noArgs 1`] = `"cedo articulus chirographum"`; -exports[`lorem > 1337 > words > with length 1`] = `"cedo laborum articulus benevolentia chirographum illo degenero ademptio commemoro canto"`; +exports[`lorem > 1337 > words > with length 1`] = `"cedo articulus chirographum degenero commemoro eaque cedo voluptatibus tabella ancilla"`; -exports[`lorem > 1337 > words > with length range 1`] = `"laborum articulus benevolentia chirographum illo degenero ademptio commemoro canto eaque omnis cedo"`; +exports[`lorem > 1337 > words > with length range 1`] = `"articulus chirographum degenero commemoro eaque cedo voluptatibus tabella ancilla creptio quisquam ante"`; diff --git a/test/modules/__snapshots__/number.spec.ts.snap b/test/modules/__snapshots__/number.spec.ts.snap index fc528fd96ad..49bd667584a 100644 --- a/test/modules/__snapshots__/number.spec.ts.snap +++ b/test/modules/__snapshots__/number.spec.ts.snap @@ -1,18 +1,18 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`number > 42 > bigInt > noArgs 1`] = `379177551410048n`; +exports[`number > 42 > bigInt > noArgs 1`] = `397511086709821n`; -exports[`number > 42 > bigInt > with big options 1`] = `17723424219505212239212136n`; +exports[`number > 42 > bigInt > with big options 1`] = `19556777749482489605814694n`; -exports[`number > 42 > bigInt > with bigint value 1`] = `7n`; +exports[`number > 42 > bigInt > with bigint value 1`] = `25n`; exports[`number > 42 > bigInt > with boolean value 1`] = `1n`; -exports[`number > 42 > bigInt > with number value 1`] = `37n`; +exports[`number > 42 > bigInt > with number value 1`] = `39n`; -exports[`number > 42 > bigInt > with options 1`] = `1n`; +exports[`number > 42 > bigInt > with options 1`] = `19n`; -exports[`number > 42 > bigInt > with string value 1`] = `37n`; +exports[`number > 42 > bigInt > with string value 1`] = `39n`; exports[`number > 42 > binary > noArgs 1`] = `"0"`; @@ -20,11 +20,11 @@ exports[`number > 42 > binary > with options 1`] = `"100"`; exports[`number > 42 > binary > with value 1`] = `"0"`; -exports[`number > 42 > float > with max 1`] = `25.843267887365073`; +exports[`number > 42 > float > with max 1`] = `25.84326820046801`; -exports[`number > 42 > float > with min 1`] = `-25.894775084685534`; +exports[`number > 42 > float > with min 1`] = `-25.89477488956341`; -exports[`number > 42 > float > with min and max 1`] = `-0.4260473116301`; +exports[`number > 42 > float > with min and max 1`] = `-0.42604680794276106`; exports[`number > 42 > float > with min, max and fractionDigits 1`] = `-0.4261`; @@ -32,7 +32,7 @@ exports[`number > 42 > float > with min, max and multipleOf 1`] = `-0.4261`; exports[`number > 42 > float > with min, max and precision 1`] = `-0.4261`; -exports[`number > 42 > float > with plain number 1`] = `1.498160457238555`; +exports[`number > 42 > float > with plain number 1`] = `1.49816047538945`; exports[`number > 42 > hex > noArgs 1`] = `"5"`; @@ -40,7 +40,7 @@ exports[`number > 42 > hex > with options 1`] = `"4"`; exports[`number > 42 > hex > with value 1`] = `"0"`; -exports[`number > 42 > int > noArgs 1`] = `3373557438480384`; +exports[`number > 42 > int > noArgs 1`] = `3373557479352566`; exports[`number > 42 > int > with options 1`] = `4`; @@ -52,19 +52,19 @@ exports[`number > 42 > octal > with options 1`] = `"4"`; exports[`number > 42 > octal > with value 1`] = `"0"`; -exports[`number > 1211 > bigInt > noArgs 1`] = `948721906162743n`; +exports[`number > 1211 > bigInt > noArgs 1`] = `982966736876848n`; -exports[`number > 1211 > bigInt > with big options 1`] = `22017767508700414061739128n`; +exports[`number > 1211 > bigInt > with big options 1`] = `25442250580110979794946298n`; -exports[`number > 1211 > bigInt > with bigint value 1`] = `80n`; +exports[`number > 1211 > bigInt > with bigint value 1`] = `114n`; exports[`number > 1211 > bigInt > with boolean value 1`] = `1n`; -exports[`number > 1211 > bigInt > with number value 1`] = `8n`; +exports[`number > 1211 > bigInt > with number value 1`] = `12n`; -exports[`number > 1211 > bigInt > with options 1`] = `10n`; +exports[`number > 1211 > bigInt > with options 1`] = `44n`; -exports[`number > 1211 > bigInt > with string value 1`] = `24n`; +exports[`number > 1211 > bigInt > with string value 1`] = `28n`; exports[`number > 1211 > binary > noArgs 1`] = `"1"`; @@ -72,11 +72,11 @@ exports[`number > 1211 > binary > with options 1`] = `"1010"`; exports[`number > 1211 > binary > with value 1`] = `"1"`; -exports[`number > 1211 > float > with max 1`] = `64.06789060821757`; +exports[`number > 1211 > float > with max 1`] = `64.06789061927832`; -exports[`number > 1211 > float > with min 1`] = `-2.073633389081806`; +exports[`number > 1211 > float > with min 1`] = `-2.0736333821888806`; -exports[`number > 1211 > float > with min and max 1`] = `61.06573706539348`; +exports[`number > 1211 > float > with min and max 1`] = `61.065737083186846`; exports[`number > 1211 > float > with min, max and fractionDigits 1`] = `61.0658`; @@ -84,7 +84,7 @@ exports[`number > 1211 > float > with min, max and multipleOf 1`] = `61.0658`; exports[`number > 1211 > float > with min, max and precision 1`] = `61.0658`; -exports[`number > 1211 > float > with plain number 1`] = `3.7140806149691343`; +exports[`number > 1211 > float > with plain number 1`] = `3.714080615610337`; exports[`number > 1211 > hex > noArgs 1`] = `"e"`; @@ -92,7 +92,7 @@ exports[`number > 1211 > hex > with options 1`] = `"a"`; exports[`number > 1211 > hex > with value 1`] = `"1"`; -exports[`number > 1211 > int > noArgs 1`] = `8363366036799488`; +exports[`number > 1211 > int > noArgs 1`] = `8363366038243348`; exports[`number > 1211 > int > with options 1`] = `10`; @@ -104,19 +104,19 @@ exports[`number > 1211 > octal > with options 1`] = `"12"`; exports[`number > 1211 > octal > with value 1`] = `"1"`; -exports[`number > 1337 > bigInt > noArgs 1`] = `251225403255239n`; +exports[`number > 1337 > bigInt > noArgs 1`] = `212435297136194n`; -exports[`number > 1337 > bigInt > with big options 1`] = `31258255497061442772623668n`; +exports[`number > 1337 > bigInt > with big options 1`] = `27379244885156992800029992n`; -exports[`number > 1337 > bigInt > with bigint value 1`] = `3n`; +exports[`number > 1337 > bigInt > with bigint value 1`] = `88n`; exports[`number > 1337 > bigInt > with boolean value 1`] = `0n`; -exports[`number > 1337 > bigInt > with number value 1`] = `25n`; +exports[`number > 1337 > bigInt > with number value 1`] = `21n`; -exports[`number > 1337 > bigInt > with options 1`] = `-15n`; +exports[`number > 1337 > bigInt > with options 1`] = `58n`; -exports[`number > 1337 > bigInt > with string value 1`] = `25n`; +exports[`number > 1337 > bigInt > with string value 1`] = `21n`; exports[`number > 1337 > binary > noArgs 1`] = `"0"`; @@ -124,11 +124,11 @@ exports[`number > 1337 > binary > with options 1`] = `"10"`; exports[`number > 1337 > binary > with value 1`] = `"0"`; -exports[`number > 1337 > float > with max 1`] = `18.0797026574146`; +exports[`number > 1337 > float > with max 1`] = `18.079702576075135`; -exports[`number > 1337 > float > with min 1`] = `-30.732938923640177`; +exports[`number > 1337 > float > with min 1`] = `-30.73293897432999`; -exports[`number > 1337 > float > with min and max 1`] = `-12.915260942419991`; +exports[`number > 1337 > float > with min and max 1`] = `-12.915261073270432`; exports[`number > 1337 > float > with min, max and fractionDigits 1`] = `-12.9153`; @@ -136,7 +136,7 @@ exports[`number > 1337 > float > with min, max and multipleOf 1`] = `-12.9153`; exports[`number > 1337 > float > with min, max and precision 1`] = `-12.9153`; -exports[`number > 1337 > float > with plain number 1`] = `1.048098704777658`; +exports[`number > 1337 > float > with plain number 1`] = `1.0480987000623267`; exports[`number > 1337 > hex > noArgs 1`] = `"4"`; @@ -144,7 +144,7 @@ exports[`number > 1337 > hex > with options 1`] = `"2"`; exports[`number > 1337 > hex > with value 1`] = `"0"`; -exports[`number > 1337 > int > noArgs 1`] = `2360108468142080`; +exports[`number > 1337 > int > noArgs 1`] = `2360108457524098`; exports[`number > 1337 > int > with options 1`] = `2`; diff --git a/test/modules/__snapshots__/person.spec.ts.snap b/test/modules/__snapshots__/person.spec.ts.snap index a85f4ccb62e..92479c29143 100644 --- a/test/modules/__snapshots__/person.spec.ts.snap +++ b/test/modules/__snapshots__/person.spec.ts.snap @@ -1,20 +1,20 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`person > 42 > bio 1`] = `"public speaker, traveler, designer"`; +exports[`person > 42 > bio 1`] = `"traveler, philosopher, model"`; exports[`person > 42 > firstName > noArgs 1`] = `"Garnet"`; exports[`person > 42 > firstName > with sex 1`] = `"Glen"`; -exports[`person > 42 > fullName > noArgs 1`] = `"Miss Sadie Deckow-Reynolds"`; +exports[`person > 42 > fullName > noArgs 1`] = `"Lorene Miller"`; exports[`person > 42 > fullName > with all (sex) 1`] = `"John Doe"`; -exports[`person > 42 > fullName > with firstName 1`] = `"John Wiegand"`; +exports[`person > 42 > fullName > with firstName 1`] = `"John Reynolds-Miller"`; -exports[`person > 42 > fullName > with lastName 1`] = `"Sadie Doe I"`; +exports[`person > 42 > fullName > with lastName 1`] = `"Lorene Doe"`; -exports[`person > 42 > fullName > with sex 1`] = `"Melanie Wiegand"`; +exports[`person > 42 > fullName > with sex 1`] = `"Melanie Reynolds-Miller"`; exports[`person > 42 > gender 1`] = `"Gender nonconforming"`; @@ -22,13 +22,13 @@ exports[`person > 42 > jobArea 1`] = `"Identity"`; exports[`person > 42 > jobDescriptor 1`] = `"National"`; -exports[`person > 42 > jobTitle 1`] = `"National Data Representative"`; +exports[`person > 42 > jobTitle 1`] = `"National Usability Producer"`; exports[`person > 42 > jobType 1`] = `"Coordinator"`; -exports[`person > 42 > lastName > noArgs 1`] = `"Schinner"`; +exports[`person > 42 > lastName > noArgs 1`] = `"Wiegand"`; -exports[`person > 42 > lastName > with sex 1`] = `"Schinner"`; +exports[`person > 42 > lastName > with sex 1`] = `"Wiegand"`; exports[`person > 42 > middleName > noArgs 1`] = `"Greer"`; @@ -50,21 +50,21 @@ exports[`person > 42 > suffix > with sex 1`] = `"III"`; exports[`person > 42 > zodiacSign 1`] = `"Gemini"`; -exports[`person > 1211 > bio 1`] = `"teletype lover, dreamer 👄"`; +exports[`person > 1211 > bio 1`] = `"cruise supporter, parent 🎲"`; exports[`person > 1211 > firstName > noArgs 1`] = `"Tito"`; exports[`person > 1211 > firstName > with sex 1`] = `"Percy"`; -exports[`person > 1211 > fullName > noArgs 1`] = `"Claude Satterfield"`; +exports[`person > 1211 > fullName > noArgs 1`] = `"Darrel Zieme"`; -exports[`person > 1211 > fullName > with all (sex) 1`] = `"John Doe IV"`; +exports[`person > 1211 > fullName > with all (sex) 1`] = `"John Doe PhD"`; -exports[`person > 1211 > fullName > with firstName 1`] = `"Mr. John Trantow"`; +exports[`person > 1211 > fullName > with firstName 1`] = `"Dr. John Fahey MD"`; -exports[`person > 1211 > fullName > with lastName 1`] = `"Claude Doe DDS"`; +exports[`person > 1211 > fullName > with lastName 1`] = `"Darrel Doe"`; -exports[`person > 1211 > fullName > with sex 1`] = `"Mrs. Patti Trantow"`; +exports[`person > 1211 > fullName > with sex 1`] = `"Miss Patti Fahey MD"`; exports[`person > 1211 > gender 1`] = `"Trigender"`; @@ -72,13 +72,13 @@ exports[`person > 1211 > jobArea 1`] = `"Factors"`; exports[`person > 1211 > jobDescriptor 1`] = `"Chief"`; -exports[`person > 1211 > jobTitle 1`] = `"Chief Division Agent"`; +exports[`person > 1211 > jobTitle 1`] = `"Chief Interactions Manager"`; exports[`person > 1211 > jobType 1`] = `"Representative"`; -exports[`person > 1211 > lastName > noArgs 1`] = `"Koelpin"`; +exports[`person > 1211 > lastName > noArgs 1`] = `"Trantow"`; -exports[`person > 1211 > lastName > with sex 1`] = `"Koelpin"`; +exports[`person > 1211 > lastName > with sex 1`] = `"Trantow"`; exports[`person > 1211 > middleName > noArgs 1`] = `"Sawyer"`; @@ -100,21 +100,21 @@ exports[`person > 1211 > suffix > with sex 1`] = `"DVM"`; exports[`person > 1211 > zodiacSign 1`] = `"Capricorn"`; -exports[`person > 1337 > bio 1`] = `"inventor, creator, developer"`; +exports[`person > 1337 > bio 1`] = `"creator, engineer, friend"`; exports[`person > 1337 > firstName > noArgs 1`] = `"Devyn"`; exports[`person > 1337 > firstName > with sex 1`] = `"Ray"`; -exports[`person > 1337 > fullName > noArgs 1`] = `"Leona Effertz"`; +exports[`person > 1337 > fullName > noArgs 1`] = `"Marilyn Koelpin"`; exports[`person > 1337 > fullName > with all (sex) 1`] = `"John Doe"`; -exports[`person > 1337 > fullName > with firstName 1`] = `"John Cronin"`; +exports[`person > 1337 > fullName > with firstName 1`] = `"John Gottlieb"`; -exports[`person > 1337 > fullName > with lastName 1`] = `"Leona Doe"`; +exports[`person > 1337 > fullName > with lastName 1`] = `"Marilyn Doe"`; -exports[`person > 1337 > fullName > with sex 1`] = `"Esther Cronin"`; +exports[`person > 1337 > fullName > with sex 1`] = `"Esther Gottlieb"`; exports[`person > 1337 > gender 1`] = `"Demigender"`; @@ -122,13 +122,13 @@ exports[`person > 1337 > jobArea 1`] = `"Functionality"`; exports[`person > 1337 > jobDescriptor 1`] = `"Future"`; -exports[`person > 1337 > jobTitle 1`] = `"Future Infrastructure Liaison"`; +exports[`person > 1337 > jobTitle 1`] = `"Future Marketing Engineer"`; exports[`person > 1337 > jobType 1`] = `"Engineer"`; -exports[`person > 1337 > lastName > noArgs 1`] = `"MacGyver"`; +exports[`person > 1337 > lastName > noArgs 1`] = `"Cronin"`; -exports[`person > 1337 > lastName > with sex 1`] = `"MacGyver"`; +exports[`person > 1337 > lastName > with sex 1`] = `"Cronin"`; exports[`person > 1337 > middleName > noArgs 1`] = `"Dakota"`; diff --git a/test/modules/__snapshots__/phone.spec.ts.snap b/test/modules/__snapshots__/phone.spec.ts.snap index a3809065def..2f60813caf7 100644 --- a/test/modules/__snapshots__/phone.spec.ts.snap +++ b/test/modules/__snapshots__/phone.spec.ts.snap @@ -1,19 +1,19 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`phone > 42 > imei 1`] = `"37-917755-141004-5"`; +exports[`phone > 42 > imei 1`] = `"39-751108-670982-8"`; -exports[`phone > 42 > number > format 1`] = `"379-177-5514"`; +exports[`phone > 42 > number > format 1`] = `"397-511-0867"`; -exports[`phone > 42 > number > noArgs 1`] = `"(891) 775-5141 x004"`; +exports[`phone > 42 > number > noArgs 1`] = `"(975) 310-8670 x982"`; -exports[`phone > 1211 > imei 1`] = `"94-872190-616274-4"`; +exports[`phone > 1211 > imei 1`] = `"98-296673-687684-2"`; -exports[`phone > 1211 > number > format 1`] = `"948-721-9061"`; +exports[`phone > 1211 > number > format 1`] = `"982-966-7368"`; -exports[`phone > 1211 > number > noArgs 1`] = `"1-587-319-0616 x27431"`; +exports[`phone > 1211 > number > noArgs 1`] = `"1-929-767-3687 x68488"`; -exports[`phone > 1337 > imei 1`] = `"25-122540-325523-4"`; +exports[`phone > 1337 > imei 1`] = `"21-243529-713619-6"`; -exports[`phone > 1337 > number > format 1`] = `"251-225-4032"`; +exports[`phone > 1337 > number > format 1`] = `"212-435-2971"`; -exports[`phone > 1337 > number > noArgs 1`] = `"612-454-0325 x523"`; +exports[`phone > 1337 > number > noArgs 1`] = `"324-452-9713 x619"`; diff --git a/test/modules/__snapshots__/random.spec.ts.snap b/test/modules/__snapshots__/random.spec.ts.snap index a8fdb062930..42839e35ea6 100644 --- a/test/modules/__snapshots__/random.spec.ts.snap +++ b/test/modules/__snapshots__/random.spec.ts.snap @@ -2,60 +2,60 @@ exports[`random > 42 > alpha > noArgs 1`] = `"t"`; -exports[`random > 42 > alpha > with length 1`] = `"tPXjM"`; +exports[`random > 42 > alpha > with length 1`] = `"tXMFi"`; exports[`random > 42 > alphaNumeric > noArgs 1`] = `"n"`; -exports[`random > 42 > alphaNumeric > with length 1`] = `"nNWbJ"`; +exports[`random > 42 > alphaNumeric > with length 1`] = `"nWJB9"`; exports[`random > 42 > numeric > noArgs 1`] = `"3"`; -exports[`random > 42 > numeric > with length 1`] = `"37917"`; +exports[`random > 42 > numeric > with length 1`] = `"39751"`; -exports[`random > 42 > word 1`] = `"project"`; +exports[`random > 42 > word 1`] = `"throughput"`; -exports[`random > 42 > words > noArgs 1`] = `"Hybrid Shoes"`; +exports[`random > 42 > words > noArgs 1`] = `"refrigerator Cisgender"`; -exports[`random > 42 > words > with length 1`] = `"project comics Neptunium Multigender violet"`; +exports[`random > 42 > words > with length 1`] = `"throughput Lutetium purple Glamorgan female"`; -exports[`random > 42 > words > with length range 1`] = `"Hybrid Shoes"`; +exports[`random > 42 > words > with length range 1`] = `"refrigerator Cisgender"`; exports[`random > 1211 > alpha > noArgs 1`] = `"W"`; -exports[`random > 1211 > alpha > with length 1`] = `"WxUOl"`; +exports[`random > 1211 > alpha > with length 1`] = `"WUlZI"`; exports[`random > 1211 > alphaNumeric > noArgs 1`] = `"V"`; -exports[`random > 1211 > alphaNumeric > with length 1`] = `"VsTMd"`; +exports[`random > 1211 > alphaNumeric > with length 1`] = `"VTdZF"`; exports[`random > 1211 > numeric > noArgs 1`] = `"9"`; -exports[`random > 1211 > numeric > with length 1`] = `"94872"`; +exports[`random > 1211 > numeric > with length 1`] = `"98296"`; -exports[`random > 1211 > word 1`] = `"gah"`; +exports[`random > 1211 > word 1`] = `"zowie"`; -exports[`random > 1211 > words > noArgs 1`] = `"USB teal Road"`; +exports[`random > 1211 > words > noArgs 1`] = `"fairly puzzle Consultant"`; -exports[`random > 1211 > words > with length 1`] = `"gah strictly Bronze assail Manager"`; +exports[`random > 1211 > words > with length 1`] = `"zowie Frozen Director Hybrid Facilitator"`; -exports[`random > 1211 > words > with length range 1`] = `"USB teal Road magenta Oriental"`; +exports[`random > 1211 > words > with length range 1`] = `"fairly puzzle Consultant neutral Hybrid"`; exports[`random > 1337 > alpha > noArgs 1`] = `"n"`; -exports[`random > 1337 > alpha > with length 1`] = `"nDilo"`; +exports[`random > 1337 > alpha > with length 1`] = `"nioxq"`; exports[`random > 1337 > alphaNumeric > noArgs 1`] = `"g"`; -exports[`random > 1337 > alphaNumeric > with length 1`] = `"gy9dh"`; +exports[`random > 1337 > alphaNumeric > with length 1`] = `"g9hsj"`; exports[`random > 1337 > numeric > noArgs 1`] = `"2"`; -exports[`random > 1337 > numeric > with length 1`] = `"25122"`; +exports[`random > 1337 > numeric > with length 1`] = `"21243"`; -exports[`random > 1337 > word 1`] = `"Bespoke"`; +exports[`random > 1337 > word 1`] = `"Rustic"`; -exports[`random > 1337 > words > noArgs 1`] = `"articulus"`; +exports[`random > 1337 > words > noArgs 1`] = `"black"`; -exports[`random > 1337 > words > with length 1`] = `"Bespoke connect French pixel Ball"`; +exports[`random > 1337 > words > with length 1`] = `"Rustic port pro Maryland Research"`; -exports[`random > 1337 > words > with length range 1`] = `"articulus Incredible"`; +exports[`random > 1337 > words > with length range 1`] = `"black HDD"`; diff --git a/test/modules/__snapshots__/string.spec.ts.snap b/test/modules/__snapshots__/string.spec.ts.snap index afe54fc8b85..31e4c28dd41 100644 --- a/test/modules/__snapshots__/string.spec.ts.snap +++ b/test/modules/__snapshots__/string.spec.ts.snap @@ -10,21 +10,21 @@ exports[`string > 42 > alpha > with casing = upper 1`] = `"J"`; exports[`string > 42 > alpha > with exclude 1`] = `"A"`; -exports[`string > 42 > alpha > with length 1`] = `"tPXjMO"`; +exports[`string > 42 > alpha > with length 1`] = `"tXMFii"`; -exports[`string > 42 > alpha > with length parameter 1`] = `"tPXjM"`; +exports[`string > 42 > alpha > with length parameter 1`] = `"tXMFi"`; -exports[`string > 42 > alpha > with length parameter 2`] = `"OFFix"`; +exports[`string > 42 > alpha > with length parameter 2`] = `"idTFK"`; -exports[`string > 42 > alpha > with length parameter 3`] = `"ifdxT"`; +exports[`string > 42 > alpha > with length parameter 3`] = `"bYRlj"`; -exports[`string > 42 > alpha > with length parameter 4`] = `"rFhKH"`; +exports[`string > 42 > alpha > with length parameter 4`] = `"jpBwp"`; -exports[`string > 42 > alpha > with length parameter 5`] = `"bcYLR"`; +exports[`string > 42 > alpha > with length parameter 5`] = `"Fhptx"`; -exports[`string > 42 > alpha > with length range 1`] = `"PXjMOFFixifdxT"`; +exports[`string > 42 > alpha > with length range 1`] = `"XMFiidTFKbYRlj"`; -exports[`string > 42 > alpha > with length, casing and exclude 1`] = `"fwzcvwj"`; +exports[`string > 42 > alpha > with length, casing and exclude 1`] = `"fzvjcca"`; exports[`string > 42 > alphanumeric > noArgs 1`] = `"n"`; @@ -36,43 +36,43 @@ exports[`string > 42 > alphanumeric > with casing = upper 1`] = `"D"`; exports[`string > 42 > alphanumeric > with exclude 1`] = `"x"`; -exports[`string > 42 > alphanumeric > with length 1`] = `"nNWbJM"`; +exports[`string > 42 > alphanumeric > with length 1`] = `"nWJB99"`; -exports[`string > 42 > alphanumeric > with length parameter 1`] = `"nNWbJ"`; +exports[`string > 42 > alphanumeric > with length parameter 1`] = `"nWJB9"`; -exports[`string > 42 > alphanumeric > with length parameter 2`] = `"MBB9r"`; +exports[`string > 42 > alphanumeric > with length parameter 2`] = `"93RBH"`; -exports[`string > 42 > alphanumeric > with length parameter 3`] = `"963sR"`; +exports[`string > 42 > alphanumeric > with length parameter 3`] = `"1YPdb"`; -exports[`string > 42 > alphanumeric > with length parameter 4`] = `"kB8HE"`; +exports[`string > 42 > alphanumeric > with length parameter 4`] = `"biwqi"`; -exports[`string > 42 > alphanumeric > with length parameter 5`] = `"13YIP"`; +exports[`string > 42 > alphanumeric > with length parameter 5`] = `"B8ims"`; -exports[`string > 42 > alphanumeric > with length range 1`] = `"NWbJMBB9r963sR"`; +exports[`string > 42 > alphanumeric > with length range 1`] = `"WJB993RBH1YPdb"`; -exports[`string > 42 > alphanumeric > with length, casing and exclude 1`] = `"cvy4kvh"`; +exports[`string > 42 > alphanumeric > with length, casing and exclude 1`] = `"cykh442"`; exports[`string > 42 > binary > noArgs 1`] = `"0b0"`; exports[`string > 42 > binary > with custom prefix 1`] = `"bin_0"`; -exports[`string > 42 > binary > with length 1`] = `"0b011011"`; +exports[`string > 42 > binary > with length 1`] = `"0b011100"`; -exports[`string > 42 > binary > with length and empty prefix 1`] = `"0110111"`; +exports[`string > 42 > binary > with length and empty prefix 1`] = `"0111000"`; -exports[`string > 42 > binary > with length range 1`] = `"0b11011110000001"`; +exports[`string > 42 > binary > with length range 1`] = `"0b11100011101100"`; exports[`string > 42 > fromCharacters > with string characters 1`] = `"o"`; -exports[`string > 42 > fromCharacters > with string characters and length 1`] = `"oaroa"`; +exports[`string > 42 > fromCharacters > with string characters and length 1`] = `"orabf"`; -exports[`string > 42 > fromCharacters > with string characters and length range 1`] = `"aroaabbfofffor"`; +exports[`string > 42 > fromCharacters > with string characters and length range 1`] = `"rabfffrbafraoo"`; exports[`string > 42 > fromCharacters > with string[] characters 1`] = `"o"`; -exports[`string > 42 > fromCharacters > with string[] characters and length 1`] = `"oaroa"`; +exports[`string > 42 > fromCharacters > with string[] characters and length 1`] = `"orabf"`; -exports[`string > 42 > fromCharacters > with string[] characters and length range 1`] = `"aroaabbfofffor"`; +exports[`string > 42 > fromCharacters > with string[] characters and length range 1`] = `"rabfffrbafraoo"`; exports[`string > 42 > hexadecimal > noArgs 1`] = `"0x8"`; @@ -84,25 +84,25 @@ exports[`string > 42 > hexadecimal > with casing = upper 1`] = `"0x8"`; exports[`string > 42 > hexadecimal > with custom prefix 1`] = `"hex_8"`; -exports[`string > 42 > hexadecimal > with length 1`] = `"0x8BE4AB"`; +exports[`string > 42 > hexadecimal > with length 1`] = `"0x8EAd33"`; -exports[`string > 42 > hexadecimal > with length range 1`] = `"0xBE4ABdd39321aD"`; +exports[`string > 42 > hexadecimal > with length range 1`] = `"0xEAd331Ddf0FC44"`; -exports[`string > 42 > hexadecimal > with length, casing and empty prefix 1`] = `"8be4abd"`; +exports[`string > 42 > hexadecimal > with length, casing and empty prefix 1`] = `"8ead331"`; -exports[`string > 42 > nanoid > noArgs 1`] = `"NbMBr6sk8E3-W0ZCB01wo"`; +exports[`string > 42 > nanoid > noArgs 1`] = `"WB9RHYdbwi8mMv2aWO6ru"`; -exports[`string > 42 > nanoid > noArgs 2`] = `"2Ye5CnYsRGr0Wyn0eeGBP"`; +exports[`string > 42 > nanoid > noArgs 2`] = `"UFwb-TVckgmxNZcOJ47C3"`; -exports[`string > 42 > nanoid > noArgs 3`] = `"aobKqcz1-roVJkzwXQKxA"`; +exports[`string > 42 > nanoid > noArgs 3`] = `"kDtIyuq6DvfK49OSbxT6q"`; -exports[`string > 42 > nanoid > noArgs 4`] = `"XBhia0_oi0cIMBVEUQr5m"`; +exports[`string > 42 > nanoid > noArgs 4`] = `"RvdkkHYfi2vheu_LJDxPb"`; -exports[`string > 42 > nanoid > noArgs 5`] = `"FFAhynYQIef2I6rcTtyH8"`; +exports[`string > 42 > nanoid > noArgs 5`] = `"A1ean87SEyeTDlTM5T0F9"`; -exports[`string > 42 > nanoid > with length parameter 1`] = `"NbMBr6sk8E3-W0ZCB01wo2Ye5CnYsR"`; +exports[`string > 42 > nanoid > with length parameter 1`] = `"WB9RHYdbwi8mMv2aWO6ruUFwb-TVck"`; -exports[`string > 42 > nanoid > with length range 1`] = `"WJB993RBH1YPdb_iwqiB8i"`; +exports[`string > 42 > nanoid > with length range 1`] = `"J93B1-biqBiscAB4XiG72g"`; exports[`string > 42 > numeric > noArgs 1`] = `"3"`; @@ -110,69 +110,69 @@ exports[`string > 42 > numeric > with allowLeadingZeros 1`] = `"4"`; exports[`string > 42 > numeric > with exclude 1`] = `"6"`; -exports[`string > 42 > numeric > with length 1`] = `"379177"`; +exports[`string > 42 > numeric > with length 1`] = `"397511"`; -exports[`string > 42 > numeric > with length parameter 1`] = `"37917"`; +exports[`string > 42 > numeric > with length parameter 1`] = `"39751"`; -exports[`string > 42 > numeric > with length parameter 2`] = `"75514"`; +exports[`string > 42 > numeric > with length parameter 2`] = `"10867"`; -exports[`string > 42 > numeric > with length parameter 3`] = `"10048"`; +exports[`string > 42 > numeric > with length parameter 3`] = `"09821"`; -exports[`string > 42 > numeric > with length parameter 4`] = `"36176"`; +exports[`string > 42 > numeric > with length parameter 4`] = `"13542"`; -exports[`string > 42 > numeric > with length parameter 5`] = `"00978"`; +exports[`string > 42 > numeric > with length parameter 5`] = `"61234"`; -exports[`string > 42 > numeric > with length range 1`] = `"79177551410048"`; +exports[`string > 42 > numeric > with length range 1`] = `"97511086709821"`; -exports[`string > 42 > numeric > with length, allowLeadingZeros and exclude 1`] = `"6890887"`; +exports[`string > 42 > numeric > with length, allowLeadingZeros and exclude 1`] = `"6987000"`; exports[`string > 42 > octal > noArgs 1`] = `"0o2"`; exports[`string > 42 > octal > with custom prefix 1`] = `"oct_2"`; -exports[`string > 42 > octal > with length 1`] = `"0o267156"`; +exports[`string > 42 > octal > with length 1`] = `"0o275411"`; -exports[`string > 42 > octal > with length and empty prefix 1`] = `"2671564"`; +exports[`string > 42 > octal > with length and empty prefix 1`] = `"2754110"`; -exports[`string > 42 > octal > with length range 1`] = `"0o67156441310036"`; +exports[`string > 42 > octal > with length range 1`] = `"0o75411064507611"`; -exports[`string > 42 > sample > noArgs 1`] = `"Cky2eiXX/J"`; +exports[`string > 42 > sample > noArgs 1`] = `"CyeX//&qXb"`; -exports[`string > 42 > sample > with length parameter 1`] = `"Cky2e"`; +exports[`string > 42 > sample > with length parameter 1`] = `"CyeX/"`; -exports[`string > 42 > sample > with length parameter 2`] = `"iXX/J"`; +exports[`string > 42 > sample > with length parameter 2`] = `"/&qXb"`; -exports[`string > 42 > sample > with length parameter 3`] = `"/*&Kq"`; +exports[`string > 42 > sample > with length parameter 3`] = `""{n41"`; -exports[`string > 42 > sample > with length parameter 4`] = `"@X.b]"`; +exports[`string > 42 > sample > with length parameter 4`] = `"2=QI<"`; -exports[`string > 42 > sample > with length parameter 5`] = `""&{dn"`; +exports[`string > 42 > sample > with length parameter 5`] = `"Y- 42 > sample > with length range 1`] = `"ky2eiXX/J/*&Kq"`; +exports[`string > 42 > sample > with length range 1`] = `"yeX//&qXb"{n41"`; exports[`string > 42 > symbol > noArgs 1`] = `","`; -exports[`string > 42 > symbol > with length parameter 1`] = `",^}&\\"`; +exports[`string > 42 > symbol > with length parameter 1`] = `",}\\>%"`; -exports[`string > 42 > symbol > with length parameter 2`] = `"]>>%/"`; +exports[`string > 42 > symbol > with length parameter 2`] = `"%"\`>["`; -exports[`string > 42 > symbol > with length parameter 3`] = `"%$"/\`"`; +exports[`string > 42 > symbol > with length parameter 3`] = `"!~_'&"`; -exports[`string > 42 > symbol > with length parameter 4`] = `"+>%[?"`; +exports[`string > 42 > symbol > with length parameter 4`] = `"&*;.*"`; -exports[`string > 42 > symbol > with length parameter 5`] = `"!"~\\_"`; +exports[`string > 42 > symbol > with length parameter 5`] = `">%*,/"`; -exports[`string > 42 > symbol > with length range 1`] = `"^}&\\]>>%/%$"/\`"`; +exports[`string > 42 > symbol > with length range 1`] = `"}\\>%%"\`>[!~_'&"`; -exports[`string > 42 > uuid 1`] = `"5cf2bc99-2721-407d-8592-ba00fbdf302f"`; +exports[`string > 42 > uuid 1`] = `"5fb9220d-9b0f-4d32-a248-6492457c3890"`; -exports[`string > 42 > uuid 2`] = `"94980604-8962-404f-a537-1c9368f970d9"`; +exports[`string > 42 > uuid 2`] = `"21ffc41a-7170-4e4a-9488-2fcfe9e13056"`; -exports[`string > 42 > uuid 3`] = `"2710fff9-c640-413a-937a-197d02e642ac"`; +exports[`string > 42 > uuid 3`] = `"d5482c1f-c30d-4bbc-b151-d95145bae71b"`; -exports[`string > 42 > uuid 4`] = `"6838920f-dc7f-46ee-a9be-519380f5d6b4"`; +exports[`string > 42 > uuid 4`] = `"8c786010-a58e-436c-8314-2ecadc2e8ce5"`; -exports[`string > 42 > uuid 5`] = `"d95f4984-24c2-410f-86c6-3400d3bbbcc9"`; +exports[`string > 42 > uuid 5`] = `"36dd0863-15f5-48b5-bff4-74409804e327"`; exports[`string > 1211 > alpha > noArgs 1`] = `"W"`; @@ -184,21 +184,21 @@ exports[`string > 1211 > alpha > with casing = upper 1`] = `"Y"`; exports[`string > 1211 > alpha > with exclude 1`] = `"X"`; -exports[`string > 1211 > alpha > with length 1`] = `"WxUOlg"`; +exports[`string > 1211 > alpha > with length 1`] = `"WUlZIJ"`; -exports[`string > 1211 > alpha > with length parameter 1`] = `"WxUOl"`; +exports[`string > 1211 > alpha > with length parameter 1`] = `"WUlZI"`; -exports[`string > 1211 > alpha > with length parameter 2`] = `"gZbIi"`; +exports[`string > 1211 > alpha > with length parameter 2`] = `"JNsKQ"`; -exports[`string > 1211 > alpha > with length parameter 3`] = `"JkNvs"`; +exports[`string > 1211 > alpha > with length parameter 3`] = `"NIRwT"`; -exports[`string > 1211 > alpha > with length parameter 4`] = `"iKMQa"`; +exports[`string > 1211 > alpha > with length parameter 4`] = `"SlEkt"`; -exports[`string > 1211 > alpha > with length parameter 5`] = `"NIILR"`; +exports[`string > 1211 > alpha > with length parameter 5`] = `"ZNuWB"`; -exports[`string > 1211 > alpha > with length range 1`] = `"xUOlgZbIiJkNvsiKMQaN"`; +exports[`string > 1211 > alpha > with length range 1`] = `"UlZIJNsKQNIRwTSlEktZ"`; -exports[`string > 1211 > alpha > with length, casing and exclude 1`] = `"yhywdcz"`; +exports[`string > 1211 > alpha > with length, casing and exclude 1`] = `"yydzkkw"`; exports[`string > 1211 > alphanumeric > noArgs 1`] = `"V"`; @@ -210,43 +210,43 @@ exports[`string > 1211 > alphanumeric > with casing = upper 1`] = `"X"`; exports[`string > 1211 > alphanumeric > with exclude 1`] = `"W"`; -exports[`string > 1211 > alphanumeric > with length 1`] = `"VsTMd8"`; +exports[`string > 1211 > alphanumeric > with length 1`] = `"VTdZFG"`; -exports[`string > 1211 > alphanumeric > with length parameter 1`] = `"VsTMd"`; +exports[`string > 1211 > alphanumeric > with length parameter 1`] = `"VTdZF"`; -exports[`string > 1211 > alphanumeric > with length parameter 2`] = `"8Z2F9"`; +exports[`string > 1211 > alphanumeric > with length parameter 2`] = `"GLlHO"`; -exports[`string > 1211 > alphanumeric > with length parameter 3`] = `"GdLql"`; +exports[`string > 1211 > alphanumeric > with length parameter 3`] = `"LEPqR"`; -exports[`string > 1211 > alphanumeric > with length parameter 4`] = `"aHKO0"`; +exports[`string > 1211 > alphanumeric > with length parameter 4`] = `"RdAcm"`; -exports[`string > 1211 > alphanumeric > with length parameter 5`] = `"LFEJP"`; +exports[`string > 1211 > alphanumeric > with length parameter 5`] = `"ZLoWx"`; -exports[`string > 1211 > alphanumeric > with length range 1`] = `"sTMd8Z2F9GdLqlaHKO0L"`; +exports[`string > 1211 > alphanumeric > with length range 1`] = `"TdZFGLlHOLEPqRRdAcmZ"`; -exports[`string > 1211 > alphanumeric > with length, casing and exclude 1`] = `"yexv53z"`; +exports[`string > 1211 > alphanumeric > with length, casing and exclude 1`] = `"yx5zjjv"`; exports[`string > 1211 > binary > noArgs 1`] = `"0b1"`; exports[`string > 1211 > binary > with custom prefix 1`] = `"bin_1"`; -exports[`string > 1211 > binary > with length 1`] = `"0b101100"`; +exports[`string > 1211 > binary > with length 1`] = `"0b110111"`; -exports[`string > 1211 > binary > with length and empty prefix 1`] = `"1011001"`; +exports[`string > 1211 > binary > with length and empty prefix 1`] = `"1101111"`; -exports[`string > 1211 > binary > with length range 1`] = `"0b01100101010100011101"`; +exports[`string > 1211 > binary > with length range 1`] = `"0b10111101111101101001"`; exports[`string > 1211 > fromCharacters > with string characters 1`] = `"r"`; -exports[`string > 1211 > fromCharacters > with string characters and length 1`] = `"rorao"`; +exports[`string > 1211 > fromCharacters > with string characters and length 1`] = `"rrora"`; -exports[`string > 1211 > fromCharacters > with string characters and length range 1`] = `"oraofrfafaoaoofaaafa"`; +exports[`string > 1211 > fromCharacters > with string characters and length range 1`] = `"roraaaoaaabaorroboor"`; exports[`string > 1211 > fromCharacters > with string[] characters 1`] = `"r"`; -exports[`string > 1211 > fromCharacters > with string[] characters and length 1`] = `"rorao"`; +exports[`string > 1211 > fromCharacters > with string[] characters and length 1`] = `"rrora"`; -exports[`string > 1211 > fromCharacters > with string[] characters and length range 1`] = `"oraofrfafaoaoofaaafa"`; +exports[`string > 1211 > fromCharacters > with string[] characters and length range 1`] = `"roraaaoaaabaorroboor"`; exports[`string > 1211 > hexadecimal > noArgs 1`] = `"0xE"`; @@ -258,25 +258,25 @@ exports[`string > 1211 > hexadecimal > with casing = upper 1`] = `"0xE"`; exports[`string > 1211 > hexadecimal > with custom prefix 1`] = `"hex_E"`; -exports[`string > 1211 > hexadecimal > with length 1`] = `"0xEaDB42"`; +exports[`string > 1211 > hexadecimal > with length 1`] = `"0xED4Fef"`; -exports[`string > 1211 > hexadecimal > with length range 1`] = `"0xaDB42F0e3f4A973fAB0A"`; +exports[`string > 1211 > hexadecimal > with length range 1`] = `"0xD4FefA7fBAeC9DC4c48F"`; -exports[`string > 1211 > hexadecimal > with length, casing and empty prefix 1`] = `"eadb42f"`; +exports[`string > 1211 > hexadecimal > with length, casing and empty prefix 1`] = `"ed4fefa"`; -exports[`string > 1211 > nanoid > noArgs 1`] = `"sM8_9dqaK0FJViZZsU9C_"`; +exports[`string > 1211 > nanoid > noArgs 1`] = `"TZGlOEqRAm-WYiwQgaHHf"`; -exports[`string > 1211 > nanoid > noArgs 2`] = `"0i1q_zaoUZjAoz4ee2QDc"`; +exports[`string > 1211 > nanoid > noArgs 2`] = `"cz2bhvdSQnzxYSIl1L48d"`; -exports[`string > 1211 > nanoid > noArgs 3`] = `"qApz4EyCu9FHt9xrws3AI"`; +exports[`string > 1211 > nanoid > noArgs 3`] = `"ZbyCDKUlrPWfVUX_K8GfV"`; -exports[`string > 1211 > nanoid > noArgs 4`] = `"5SxX-57HFuA0KnZgRAyUr"`; +exports[`string > 1211 > nanoid > noArgs 4`] = `"HqjeVEFTtyzrC9vZMsSBO"`; -exports[`string > 1211 > nanoid > noArgs 5`] = `"T_mrcROKCRDrUWF5dWr0k"`; +exports[`string > 1211 > nanoid > noArgs 5`] = `"pYVp7CmCfrfX-aE0-l08L"`; -exports[`string > 1211 > nanoid > with length parameter 1`] = `"sM8_9dqaK0FJViZZsU9C_0i1q_zaoU"`; +exports[`string > 1211 > nanoid > with length parameter 1`] = `"TZGlOEqRAm-WYiwQgaHHfcz2bhvdSQ"`; -exports[`string > 1211 > nanoid > with length range 1`] = `"TdZFGLlHOLEPqR-_AcmZLoWxYdiHwl-ngjay"`; +exports[`string > 1211 > nanoid > with length range 1`] = `"d-LHLPRdcZox_Hlnjy8upQtHHMsB6stOV-dP"`; exports[`string > 1211 > numeric > noArgs 1`] = `"9"`; @@ -284,69 +284,69 @@ exports[`string > 1211 > numeric > with allowLeadingZeros 1`] = `"9"`; exports[`string > 1211 > numeric > with exclude 1`] = `"9"`; -exports[`string > 1211 > numeric > with length 1`] = `"948721"`; +exports[`string > 1211 > numeric > with length 1`] = `"982966"`; -exports[`string > 1211 > numeric > with length parameter 1`] = `"94872"`; +exports[`string > 1211 > numeric > with length parameter 1`] = `"98296"`; -exports[`string > 1211 > numeric > with length parameter 2`] = `"19061"`; +exports[`string > 1211 > numeric > with length parameter 2`] = `"67368"`; -exports[`string > 1211 > numeric > with length parameter 3`] = `"62743"`; +exports[`string > 1211 > numeric > with length parameter 3`] = `"76848"`; -exports[`string > 1211 > numeric > with length parameter 4`] = `"16780"`; +exports[`string > 1211 > numeric > with length parameter 4`] = `"82513"`; -exports[`string > 1211 > numeric > with length parameter 5`] = `"76678"`; +exports[`string > 1211 > numeric > with length parameter 5`] = `"97395"`; -exports[`string > 1211 > numeric > with length range 1`] = `"48721906162743167807"`; +exports[`string > 1211 > numeric > with length range 1`] = `"82966736876848825139"`; -exports[`string > 1211 > numeric > with length, allowLeadingZeros and exclude 1`] = `"9798609"`; +exports[`string > 1211 > numeric > with length, allowLeadingZeros and exclude 1`] = `"9969888"`; exports[`string > 1211 > octal > noArgs 1`] = `"0o7"`; exports[`string > 1211 > octal > with custom prefix 1`] = `"oct_7"`; -exports[`string > 1211 > octal > with length 1`] = `"0o737611"`; +exports[`string > 1211 > octal > with length 1`] = `"0o771755"`; -exports[`string > 1211 > octal > with length and empty prefix 1`] = `"7376117"`; +exports[`string > 1211 > octal > with length and empty prefix 1`] = `"7717556"`; -exports[`string > 1211 > octal > with length range 1`] = `"0o37611705151632155606"`; +exports[`string > 1211 > octal > with length range 1`] = `"0o71755625665636614127"`; -exports[`string > 1211 > sample > noArgs 1`] = `"wKti5-}$_/"`; +exports[`string > 1211 > sample > noArgs 1`] = `"wt5}_\`hAal"`; -exports[`string > 1211 > sample > with length parameter 1`] = `"wKti5"`; +exports[`string > 1211 > sample > with length parameter 1`] = `"wt5}_"`; -exports[`string > 1211 > sample > with length parameter 2`] = `"-}$_/"`; +exports[`string > 1211 > sample > with length parameter 2`] = `"\`hAal"`; -exports[`string > 1211 > sample > with length parameter 3`] = `"\`4hHA"`; +exports[`string > 1211 > sample > with length parameter 3`] = `"h]nIq"`; -exports[`string > 1211 > sample > with length parameter 4`] = `"0afl""`; +exports[`string > 1211 > sample > with length parameter 4`] = `"p5W3C"`; -exports[`string > 1211 > sample > with length parameter 5`] = `"h^]dn"`; +exports[`string > 1211 > sample > with length parameter 5`] = `"|hExR"`; -exports[`string > 1211 > sample > with length range 1`] = `"Kti5-}$_/\`4hHA0afl"h"`; +exports[`string > 1211 > sample > with length range 1`] = `"t5}_\`hAalh]nIqp5W3C|"`; exports[`string > 1211 > symbol > noArgs 1`] = `"|"`; -exports[`string > 1211 > symbol > with length parameter 1`] = `"|/{]("`; +exports[`string > 1211 > symbol > with length parameter 1`] = `"|{(~@"`; -exports[`string > 1211 > symbol > with length parameter 2`] = `"%~"@&"`; +exports[`string > 1211 > symbol > with length parameter 2`] = `"@],[_"`; -exports[`string > 1211 > symbol > with length parameter 3`] = `"@'].,"`; +exports[`string > 1211 > symbol > with length parameter 3`] = `"]?_.\`"`; -exports[`string > 1211 > symbol > with length parameter 4`] = `"&[\\_!"`; +exports[`string > 1211 > symbol > with length parameter 4`] = `"\`'=',"`; -exports[`string > 1211 > symbol > with length parameter 5`] = `"]@?\\_"`; +exports[`string > 1211 > symbol > with length parameter 5`] = `"~]-|<"`; -exports[`string > 1211 > symbol > with length range 1`] = `"/{](%~"@&@'].,&[\\_!]"`; +exports[`string > 1211 > symbol > with length range 1`] = `"{(~@@],[_]?_.\`\`'=',~"`; -exports[`string > 1211 > uuid 1`] = `"e7ec32f0-a2a3-4c65-b2bb-d0caabde64df"`; +exports[`string > 1211 > uuid 1`] = `"ee3faac5-bdca-4d6d-9d39-35fc6e8f34b8"`; -exports[`string > 1211 > uuid 2`] = `"f379e325-9f7c-4064-be08-6f23942b68e5"`; +exports[`string > 1211 > uuid 2`] = `"d64428b2-b736-43d9-970b-2b4c8739d1d7"`; -exports[`string > 1211 > uuid 3`] = `"d4694649-2183-4b32-90bd-7a336639d699"`; +exports[`string > 1211 > uuid 3`] = `"79c8efdd-3bd5-4e08-bc71-4243ef639999"`; -exports[`string > 1211 > uuid 4`] = `"10ab829b-742c-4a8b-a773-298d718d7706"`; +exports[`string > 1211 > uuid 4`] = `"adcde858-75d3-4f13-90e6-e9ff59ce28bb"`; -exports[`string > 1211 > uuid 5`] = `"7b91ce88-effb-4d1d-b13b-bad759e00b86"`; +exports[`string > 1211 > uuid 5`] = `"de2b16a5-033e-49a8-8a9e-77d809771962"`; exports[`string > 1337 > alpha > noArgs 1`] = `"n"`; @@ -358,21 +358,21 @@ exports[`string > 1337 > alpha > with casing = upper 1`] = `"G"`; exports[`string > 1337 > alpha > with exclude 1`] = `"v"`; -exports[`string > 1337 > alpha > with length 1`] = `"nDiloC"`; +exports[`string > 1337 > alpha > with length 1`] = `"nioxqA"`; -exports[`string > 1337 > alpha > with length parameter 1`] = `"nDilo"`; +exports[`string > 1337 > alpha > with length parameter 1`] = `"nioxq"`; -exports[`string > 1337 > alpha > with length parameter 2`] = `"Cxbqm"`; +exports[`string > 1337 > alpha > with length parameter 2`] = `"AnYMf"`; -exports[`string > 1337 > alpha > with length parameter 3`] = `"AEnrY"`; +exports[`string > 1337 > alpha > with length parameter 3`] = `"uGgZx"`; -exports[`string > 1337 > alpha > with length parameter 4`] = `"oMpfP"`; +exports[`string > 1337 > alpha > with length parameter 4`] = `"PPsvE"`; -exports[`string > 1337 > alpha > with length parameter 5`] = `"ueGsg"`; +exports[`string > 1337 > alpha > with length parameter 5`] = `"NjoIz"`; -exports[`string > 1337 > alpha > with length range 1`] = `"DiloCxbqmAEn"`; +exports[`string > 1337 > alpha > with length range 1`] = `"ioxqAnYMfuGg"`; -exports[`string > 1337 > alpha > with length, casing and exclude 1`] = `"eicdeih"`; +exports[`string > 1337 > alpha > with length, casing and exclude 1`] = `"ecehfie"`; exports[`string > 1337 > alphanumeric > noArgs 1`] = `"g"`; @@ -384,43 +384,43 @@ exports[`string > 1337 > alphanumeric > with casing = upper 1`] = `"9"`; exports[`string > 1337 > alphanumeric > with exclude 1`] = `"s"`; -exports[`string > 1337 > alphanumeric > with length 1`] = `"gy9dhx"`; +exports[`string > 1337 > alphanumeric > with length 1`] = `"g9hsjw"`; -exports[`string > 1337 > alphanumeric > with length parameter 1`] = `"gy9dh"`; +exports[`string > 1337 > alphanumeric > with length parameter 1`] = `"g9hsj"`; -exports[`string > 1337 > alphanumeric > with length parameter 2`] = `"xs2je"`; +exports[`string > 1337 > alphanumeric > with length parameter 2`] = `"wgYJ7"`; -exports[`string > 1337 > alphanumeric > with length parameter 3`] = `"wAgkY"`; +exports[`string > 1337 > alphanumeric > with length parameter 3`] = `"nC7Yr"`; -exports[`string > 1337 > alphanumeric > with length parameter 4`] = `"gJj7N"`; +exports[`string > 1337 > alphanumeric > with length parameter 4`] = `"MNmpA"`; -exports[`string > 1337 > alphanumeric > with length parameter 5`] = `"n5Cm7"`; +exports[`string > 1337 > alphanumeric > with length parameter 5`] = `"LbhFu"`; -exports[`string > 1337 > alphanumeric > with length range 1`] = `"y9dhxs2jewAg"`; +exports[`string > 1337 > alphanumeric > with length range 1`] = `"9hsjwgYJ7nC7"`; -exports[`string > 1337 > alphanumeric > with length, casing and exclude 1`] = `"ag45age"`; +exports[`string > 1337 > alphanumeric > with length, casing and exclude 1`] = `"a4aebfa"`; exports[`string > 1337 > binary > noArgs 1`] = `"0b0"`; exports[`string > 1337 > binary > with custom prefix 1`] = `"bin_0"`; -exports[`string > 1337 > binary > with length 1`] = `"0b010001"`; +exports[`string > 1337 > binary > with length 1`] = `"0b000001"`; -exports[`string > 1337 > binary > with length and empty prefix 1`] = `"0100010"`; +exports[`string > 1337 > binary > with length and empty prefix 1`] = `"0000010"`; -exports[`string > 1337 > binary > with length range 1`] = `"0b100010000110"`; +exports[`string > 1337 > binary > with length range 1`] = `"0b000010110010"`; exports[`string > 1337 > fromCharacters > with string characters 1`] = `"o"`; -exports[`string > 1337 > fromCharacters > with string characters and length 1`] = `"obfoo"`; +exports[`string > 1337 > fromCharacters > with string characters and length 1`] = `"ofooo"`; -exports[`string > 1337 > fromCharacters > with string characters and length range 1`] = `"bfoobofoobbo"`; +exports[`string > 1337 > fromCharacters > with string characters and length range 1`] = `"foooborafobf"`; exports[`string > 1337 > fromCharacters > with string[] characters 1`] = `"o"`; -exports[`string > 1337 > fromCharacters > with string[] characters and length 1`] = `"obfoo"`; +exports[`string > 1337 > fromCharacters > with string[] characters and length 1`] = `"ofooo"`; -exports[`string > 1337 > fromCharacters > with string[] characters and length range 1`] = `"bfoobofoobbo"`; +exports[`string > 1337 > fromCharacters > with string[] characters and length range 1`] = `"foooborafobf"`; exports[`string > 1337 > hexadecimal > noArgs 1`] = `"0x5"`; @@ -432,25 +432,25 @@ exports[`string > 1337 > hexadecimal > with casing = upper 1`] = `"0x5"`; exports[`string > 1337 > hexadecimal > with custom prefix 1`] = `"hex_5"`; -exports[`string > 1337 > hexadecimal > with length 1`] = `"0x5c346b"`; +exports[`string > 1337 > hexadecimal > with length 1`] = `"0x536a7b"`; -exports[`string > 1337 > hexadecimal > with length range 1`] = `"0xc346ba075bd5"`; +exports[`string > 1337 > hexadecimal > with length range 1`] = `"0x36a7b5FA28d2"`; -exports[`string > 1337 > hexadecimal > with length, casing and empty prefix 1`] = `"5c346ba"`; +exports[`string > 1337 > hexadecimal > with length, casing and empty prefix 1`] = `"536a7b5"`; -exports[`string > 1337 > nanoid > noArgs 1`] = `"ydx2eAk_jN5mJ_RM0snwm"`; +exports[`string > 1337 > nanoid > noArgs 1`] = `"9swY7CYMmAbFbcPXv0Z7G"`; -exports[`string > 1337 > nanoid > noArgs 2`] = `"tRpr8OTVCXSOGGPC-spDN"`; +exports[`string > 1337 > nanoid > noArgs 2`] = `"mMHYBZ0W_ILbUUHwtouNU"`; -exports[`string > 1337 > nanoid > noArgs 3`] = `"GQLX3wG-xgP-RiBh-hv9G"`; +exports[`string > 1337 > nanoid > noArgs 3`] = `"TsDeyeo71JCQ_H1uUL27G"`; -exports[`string > 1337 > nanoid > noArgs 4`] = `"TxLsFyNSRiYIsFStp3G0m"`; +exports[`string > 1337 > nanoid > noArgs 4`] = `"Wbk43ELMzQKT1X9CUgu3D"`; -exports[`string > 1337 > nanoid > noArgs 5`] = `"AtcFYs1gw9vinZNdyEHwk"`; +exports[`string > 1337 > nanoid > noArgs 5`] = `"ruWy9nzH3wHgpgMxqPJIW"`; -exports[`string > 1337 > nanoid > with length parameter 1`] = `"ydx2eAk_jN5mJ_RM0snwmtRpr8OTVC"`; +exports[`string > 1337 > nanoid > with length parameter 1`] = `"9swY7CYMmAbFbcPXv0Z7GmMHYBZ0W_"`; -exports[`string > 1337 > nanoid > with length range 1`] = `"9hsjwgYJ7nC7YrMNmpA"`; +exports[`string > 1337 > nanoid > with length range 1`] = `"hjg-n7_NpLhupwbqvJ_"`; exports[`string > 1337 > numeric > noArgs 1`] = `"2"`; @@ -458,66 +458,66 @@ exports[`string > 1337 > numeric > with allowLeadingZeros 1`] = `"3"`; exports[`string > 1337 > numeric > with exclude 1`] = `"6"`; -exports[`string > 1337 > numeric > with length 1`] = `"251225"`; +exports[`string > 1337 > numeric > with length 1`] = `"212435"`; -exports[`string > 1337 > numeric > with length parameter 1`] = `"25122"`; +exports[`string > 1337 > numeric > with length parameter 1`] = `"21243"`; -exports[`string > 1337 > numeric > with length parameter 2`] = `"54032"`; +exports[`string > 1337 > numeric > with length parameter 2`] = `"52971"`; -exports[`string > 1337 > numeric > with length parameter 3`] = `"55239"`; +exports[`string > 1337 > numeric > with length parameter 3`] = `"36194"`; -exports[`string > 1337 > numeric > with length parameter 4`] = `"27318"`; +exports[`string > 1337 > numeric > with length parameter 4`] = `"77345"`; -exports[`string > 1337 > numeric > with length parameter 5`] = `"30631"`; +exports[`string > 1337 > numeric > with length parameter 5`] = `"71264"`; -exports[`string > 1337 > numeric > with length range 1`] = `"512254032552"`; +exports[`string > 1337 > numeric > with length range 1`] = `"124352971361"`; -exports[`string > 1337 > numeric > with length, allowLeadingZeros and exclude 1`] = `"6706677"`; +exports[`string > 1337 > numeric > with length, allowLeadingZeros and exclude 1`] = `"6067676"`; exports[`string > 1337 > octal > noArgs 1`] = `"0o2"`; exports[`string > 1337 > octal > with custom prefix 1`] = `"oct_2"`; -exports[`string > 1337 > octal > with length 1`] = `"0o241124"`; +exports[`string > 1337 > octal > with length 1`] = `"0o212324"`; -exports[`string > 1337 > octal > with length and empty prefix 1`] = `"2411243"`; +exports[`string > 1337 > octal > with length and empty prefix 1`] = `"2123242"`; -exports[`string > 1337 > octal > with length range 1`] = `"0o411243021442"`; +exports[`string > 1337 > octal > with length range 1`] = `"0o123242750351"`; -exports[`string > 1337 > sample > noArgs 1`] = `"9U/4:SK$>6"`; +exports[`string > 1337 > sample > noArgs 1`] = `"9/:K>Q9{e+"`; -exports[`string > 1337 > sample > with length parameter 1`] = `"9U/4:"`; +exports[`string > 1337 > sample > with length parameter 1`] = `"9/:K>"`; -exports[`string > 1337 > sample > with length parameter 2`] = `"SK$>6"`; +exports[`string > 1337 > sample > with length parameter 2`] = `"Q9{e+"`; -exports[`string > 1337 > sample > with length parameter 3`] = `"QX9@{"`; +exports[`string > 1337 > sample > with length parameter 3`] = `"D[,|J"`; -exports[`string > 1337 > sample > with length parameter 4`] = `":e=+k"`; +exports[`string > 1337 > sample > with length parameter 4`] = `"jjBGW"`; -exports[`string > 1337 > sample > with length parameter 5`] = `"D)[B,"`; +exports[`string > 1337 > sample > with length parameter 5`] = `"g2;_O"`; -exports[`string > 1337 > sample > with length range 1`] = `"U/4:SK$>6QX9"`; +exports[`string > 1337 > sample > with length range 1`] = `"/:K>Q9{e+D[,"`; exports[`string > 1337 > symbol > noArgs 1`] = `")"`; -exports[`string > 1337 > symbol > with length parameter 1`] = `")<&')"`; +exports[`string > 1337 > symbol > with length parameter 1`] = `")&)/+"`; -exports[`string > 1337 > symbol > with length parameter 2`] = `" 1337 > symbol > with length parameter 2`] = `";)~\\$"`; -exports[`string > 1337 > symbol > with length parameter 3`] = `";=)+~"`; +exports[`string > 1337 > symbol > with length parameter 3`] = `"-?%~/"`; -exports[`string > 1337 > symbol > with length parameter 4`] = `")\\*$^"`; +exports[`string > 1337 > symbol > with length parameter 4`] = `"^^,.="`; -exports[`string > 1337 > symbol > with length parameter 5`] = `"-$?,%"`; +exports[`string > 1337 > symbol > with length parameter 5`] = `"]'*@:"`; -exports[`string > 1337 > symbol > with length range 1`] = `"<&') 1337 > symbol > with length range 1`] = `"&)/+;)~\\$-?%"`; -exports[`string > 1337 > uuid 1`] = `"48234870-5389-445f-b4b4-1c61a52bf27d"`; +exports[`string > 1337 > uuid 1`] = `"4247584f-b16a-42f7-8cc5-69c34a72638d"`; -exports[`string > 1337 > uuid 2`] = `"cc057669-8c53-474d-ba67-7226d3e8ed92"`; +exports[`string > 1337 > uuid 2`] = `"f6880bf2-25b0-450c-a5b7-fd99f401ff75"`; -exports[`string > 1337 > uuid 3`] = `"fe6d8b8b-0db9-4fa2-9726-5abc0a5d0ccf"`; +exports[`string > 1337 > uuid 3`] = `"0ca3ae2e-5b48-4277-b6c7-bc5ebe67ea83"`; -exports[`string > 1337 > uuid 4`] = `"0b87afbd-8949-4dfb-84d0-419f4fe7458b"`; +exports[`string > 1337 > uuid 4`] = `"8c36682a-03be-496d-8f46-b50570ebc104"`; -exports[`string > 1337 > uuid 5`] = `"0bcea83c-a7ea-428e-9c5d-bd448f2b777a"`; +exports[`string > 1337 > uuid 5`] = `"3a7e9225-61a0-4ba0-9c5c-592d4b9e801f"`; diff --git a/test/modules/__snapshots__/system.spec.ts.snap b/test/modules/__snapshots__/system.spec.ts.snap index 9957a455490..c5c3089e5e1 100644 --- a/test/modules/__snapshots__/system.spec.ts.snap +++ b/test/modules/__snapshots__/system.spec.ts.snap @@ -2,21 +2,21 @@ exports[`system > 42 > commonFileExt 1`] = `"png"`; -exports[`system > 42 > commonFileName > noArgs 1`] = `"nondisclosure_stud.png"`; +exports[`system > 42 > commonFileName > noArgs 1`] = `"unnaturally_dreamily.mp2"`; -exports[`system > 42 > commonFileName > with extension 1`] = `"nondisclosure_stud.ext"`; +exports[`system > 42 > commonFileName > with extension 1`] = `"unnaturally_dreamily.ext"`; exports[`system > 42 > commonFileType 1`] = `"audio"`; -exports[`system > 42 > cron > noArgs 1`] = `"* 19 * 3 5"`; +exports[`system > 42 > cron > noArgs 1`] = `"* * ? 8 ?"`; -exports[`system > 42 > cron > with includeNonStandard false 1`] = `"* 19 * 3 5"`; +exports[`system > 42 > cron > with includeNonStandard false 1`] = `"* * ? 8 ?"`; -exports[`system > 42 > cron > with includeNonStandard true 1`] = `"* 19 * 3 5"`; +exports[`system > 42 > cron > with includeNonStandard true 1`] = `"* * ? 8 ?"`; -exports[`system > 42 > cron > with includeYear false 1`] = `"* 19 * 3 5"`; +exports[`system > 42 > cron > with includeYear false 1`] = `"* * ? 8 ?"`; -exports[`system > 42 > cron > with includeYear true 1`] = `"* 19 * 3 5 2047"`; +exports[`system > 42 > cron > with includeYear true 1`] = `"* * ? 8 ? *"`; exports[`system > 42 > directoryPath 1`] = `"/opt/bin"`; @@ -24,79 +24,79 @@ exports[`system > 42 > fileExt > noArgs 1`] = `"docx"`; exports[`system > 42 > fileExt > with mimeType 1`] = `"json"`; -exports[`system > 42 > fileName > noArgs 1`] = `"nondisclosure_stud.pot"`; +exports[`system > 42 > fileName > noArgs 1`] = `"unnaturally_dreamily.iso"`; -exports[`system > 42 > fileName > with extensionCount 1`] = `"nondisclosure_stud.pot.mp2a"`; +exports[`system > 42 > fileName > with extensionCount 1`] = `"unnaturally_dreamily.iso.xlw"`; -exports[`system > 42 > fileName > with extensionCount range 1`] = `"nondisclosure_stud.mp2a"`; +exports[`system > 42 > fileName > with extensionCount range 1`] = `"unnaturally_dreamily"`; -exports[`system > 42 > filePath 1`] = `"/opt/bin/crooked_falter_woefully.jpeg"`; +exports[`system > 42 > filePath 1`] = `"/opt/bin/supposing_dreamily_easel.xlsx"`; exports[`system > 42 > fileType 1`] = `"font"`; exports[`system > 42 > mimeType 1`] = `"application/x-bzip"`; -exports[`system > 42 > networkInterface > noArgs 1`] = `"wlp1s7"`; +exports[`system > 42 > networkInterface > noArgs 1`] = `"wlp5s1f0"`; -exports[`system > 42 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"wlo7"`; +exports[`system > 42 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"wlo9"`; -exports[`system > 42 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"wlxcf2bc9927210"`; +exports[`system > 42 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"wlxfb9220d9b0fd"`; -exports[`system > 42 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"wlp9s1"`; +exports[`system > 42 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"wlp7s5f1d8"`; -exports[`system > 42 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"wls7d7"`; +exports[`system > 42 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"wls9"`; exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"index"} 1`] = `"eno3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enx5cf2bc992721"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enx5fb9220d9b0f"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"P7enp9s1"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"P9enp7s5f1d8"`; exports[`system > 42 > networkInterface > with {"interfaceType":"en","interfaceSchema":"slot"} 1`] = `"ens3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"en"} 1`] = `"ens7d7"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"en"} 1`] = `"ens9"`; exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"index"} 1`] = `"wlo3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlx5cf2bc992721"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlx5fb9220d9b0f"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"P7wlp9s1"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"P9wlp7s5f1d8"`; exports[`system > 42 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"slot"} 1`] = `"wls3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"wl"} 1`] = `"wls7d7"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"wl"} 1`] = `"wls9"`; exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"index"} 1`] = `"wwo3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwx5cf2bc992721"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwx5fb9220d9b0f"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"P7wwp9s1"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"P9wwp7s5f1d8"`; exports[`system > 42 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"slot"} 1`] = `"wws3"`; -exports[`system > 42 > networkInterface > with {"interfaceType":"ww"} 1`] = `"wws7d7"`; +exports[`system > 42 > networkInterface > with {"interfaceType":"ww"} 1`] = `"wws9"`; -exports[`system > 42 > networkInterface > with {} 1`] = `"wlp1s7"`; +exports[`system > 42 > networkInterface > with {} 1`] = `"wlp5s1f0"`; -exports[`system > 42 > semver 1`] = `"3.7.9"`; +exports[`system > 42 > semver 1`] = `"3.9.7"`; -exports[`system > 1211 > commonFileExt 1`] = `"htm"`; +exports[`system > 1211 > commonFileExt 1`] = `"shtml"`; -exports[`system > 1211 > commonFileName > noArgs 1`] = `"although_instantly_though.gif"`; +exports[`system > 1211 > commonFileName > noArgs 1`] = `"gripping_unnaturally_phew.png"`; -exports[`system > 1211 > commonFileName > with extension 1`] = `"although_instantly_though.ext"`; +exports[`system > 1211 > commonFileName > with extension 1`] = `"gripping_unnaturally_phew.ext"`; exports[`system > 1211 > commonFileType 1`] = `"application"`; -exports[`system > 1211 > cron > noArgs 1`] = `"55 * 28 * 1"`; +exports[`system > 1211 > cron > noArgs 1`] = `"55 * ? * *"`; -exports[`system > 1211 > cron > with includeNonStandard false 1`] = `"55 * 28 * 1"`; +exports[`system > 1211 > cron > with includeNonStandard false 1`] = `"55 * ? * *"`; -exports[`system > 1211 > cron > with includeNonStandard true 1`] = `"55 * 28 * 1"`; +exports[`system > 1211 > cron > with includeNonStandard true 1`] = `"55 * ? * *"`; -exports[`system > 1211 > cron > with includeYear false 1`] = `"55 * 28 * 1"`; +exports[`system > 1211 > cron > with includeYear false 1`] = `"55 * ? * *"`; -exports[`system > 1211 > cron > with includeYear true 1`] = `"55 * 28 * 1 *"`; +exports[`system > 1211 > cron > with includeYear true 1`] = `"55 * ? * * *"`; exports[`system > 1211 > directoryPath 1`] = `"/var/log"`; @@ -104,79 +104,79 @@ exports[`system > 1211 > fileExt > noArgs 1`] = `"mp4"`; exports[`system > 1211 > fileExt > with mimeType 1`] = `"map"`; -exports[`system > 1211 > fileName > noArgs 1`] = `"although_instantly_though.wav"`; +exports[`system > 1211 > fileName > noArgs 1`] = `"gripping_unnaturally_phew.vst"`; -exports[`system > 1211 > fileName > with extensionCount 1`] = `"although_instantly_though.wav.jpg"`; +exports[`system > 1211 > fileName > with extensionCount 1`] = `"gripping_unnaturally_phew.vst.mpg4"`; -exports[`system > 1211 > fileName > with extensionCount range 1`] = `"although_instantly_though.jpg"`; +exports[`system > 1211 > fileName > with extensionCount range 1`] = `"gripping_unnaturally_phew.mpg4"`; -exports[`system > 1211 > filePath 1`] = `"/var/log/outside_even.woff2"`; +exports[`system > 1211 > filePath 1`] = `"/var/log/recess_tinted_grant.mpg4"`; exports[`system > 1211 > fileType 1`] = `"video"`; exports[`system > 1211 > mimeType 1`] = `"video/mp2t"`; -exports[`system > 1211 > networkInterface > noArgs 1`] = `"wws8d1"`; +exports[`system > 1211 > networkInterface > noArgs 1`] = `"P9wwp6s6d6"`; -exports[`system > 1211 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"wwo4"`; +exports[`system > 1211 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"wwo8"`; -exports[`system > 1211 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"wwx7ec32f0a2a3c"`; +exports[`system > 1211 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"wwxe3faac5bdcad"`; -exports[`system > 1211 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"P8wwp7s2f9d6"`; +exports[`system > 1211 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"wwp2s9"`; -exports[`system > 1211 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"wws4"`; +exports[`system > 1211 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"wws8f9"`; exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"index"} 1`] = `"eno9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enxe7ec32f0a2a3"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enxee3faac5bdca"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"enp4s8d1"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"enp8s2"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"slot"} 1`] = `"ens9f8"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"en","interfaceSchema":"slot"} 1`] = `"ens9d9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"en"} 1`] = `"P8enp7s2f9d6"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"en"} 1`] = `"enp2s9"`; exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"index"} 1`] = `"wlo9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlxe7ec32f0a2a3"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlxee3faac5bdca"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"wlp4s8d1"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"wlp8s2"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"slot"} 1`] = `"wls9f8"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"slot"} 1`] = `"wls9d9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"wl"} 1`] = `"P8wlp7s2f9d6"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"wl"} 1`] = `"wlp2s9"`; exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"index"} 1`] = `"wwo9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwxe7ec32f0a2a3"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwxee3faac5bdca"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"wwp4s8d1"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"wwp8s2"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"slot"} 1`] = `"wws9f8"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"slot"} 1`] = `"wws9d9"`; -exports[`system > 1211 > networkInterface > with {"interfaceType":"ww"} 1`] = `"P8wwp7s2f9d6"`; +exports[`system > 1211 > networkInterface > with {"interfaceType":"ww"} 1`] = `"wwp2s9"`; -exports[`system > 1211 > networkInterface > with {} 1`] = `"wws8d1"`; +exports[`system > 1211 > networkInterface > with {} 1`] = `"P9wwp6s6d6"`; -exports[`system > 1211 > semver 1`] = `"9.4.8"`; +exports[`system > 1211 > semver 1`] = `"9.8.2"`; exports[`system > 1337 > commonFileExt 1`] = `"wav"`; -exports[`system > 1337 > commonFileName > noArgs 1`] = `"although.wav"`; +exports[`system > 1337 > commonFileName > noArgs 1`] = `"weedkiller.mp4"`; -exports[`system > 1337 > commonFileName > with extension 1`] = `"although.ext"`; +exports[`system > 1337 > commonFileName > with extension 1`] = `"weedkiller.ext"`; exports[`system > 1337 > commonFileType 1`] = `"audio"`; -exports[`system > 1337 > cron > noArgs 1`] = `"15 13 5 * *"`; +exports[`system > 1337 > cron > noArgs 1`] = `"* * 9 6 *"`; -exports[`system > 1337 > cron > with includeNonStandard false 1`] = `"15 13 5 * *"`; +exports[`system > 1337 > cron > with includeNonStandard false 1`] = `"* * 9 6 *"`; -exports[`system > 1337 > cron > with includeNonStandard true 1`] = `"15 13 5 * *"`; +exports[`system > 1337 > cron > with includeNonStandard true 1`] = `"@monthly"`; -exports[`system > 1337 > cron > with includeYear false 1`] = `"15 13 5 * *"`; +exports[`system > 1337 > cron > with includeYear false 1`] = `"* * 9 6 *"`; -exports[`system > 1337 > cron > with includeYear true 1`] = `"15 13 5 * * 2029"`; +exports[`system > 1337 > cron > with includeYear true 1`] = `"* * 9 6 * 2004"`; exports[`system > 1337 > directoryPath 1`] = `"/Library"`; @@ -184,58 +184,58 @@ exports[`system > 1337 > fileExt > noArgs 1`] = `"xul"`; exports[`system > 1337 > fileExt > with mimeType 1`] = `"json"`; -exports[`system > 1337 > fileName > noArgs 1`] = `"although.ppt"`; +exports[`system > 1337 > fileName > noArgs 1`] = `"weedkiller.jpe"`; -exports[`system > 1337 > fileName > with extensionCount 1`] = `"although.ppt.pdf"`; +exports[`system > 1337 > fileName > with extensionCount 1`] = `"weedkiller.jpe.distz"`; -exports[`system > 1337 > fileName > with extensionCount range 1`] = `"although"`; +exports[`system > 1337 > fileName > with extensionCount range 1`] = `"weedkiller.distz.rar"`; -exports[`system > 1337 > filePath 1`] = `"/Library/yum_fast.jpe"`; +exports[`system > 1337 > filePath 1`] = `"/Library/mmm.distz"`; exports[`system > 1337 > fileType 1`] = `"audio"`; exports[`system > 1337 > mimeType 1`] = `"application/vnd.oasis.opendocument.text"`; -exports[`system > 1337 > networkInterface > noArgs 1`] = `"enx234870538945"`; +exports[`system > 1337 > networkInterface > noArgs 1`] = `"eno2"`; -exports[`system > 1337 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"eno5"`; +exports[`system > 1337 > networkInterface > with {"interfaceSchema":"index"} 1`] = `"eno1"`; -exports[`system > 1337 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"enx823487053894"`; +exports[`system > 1337 > networkInterface > with {"interfaceSchema":"mac"} 1`] = `"enx247584fb16a2"`; -exports[`system > 1337 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"enp1s2f5d0"`; +exports[`system > 1337 > networkInterface > with {"interfaceSchema":"pci"} 1`] = `"P2enp4s3d9"`; -exports[`system > 1337 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"ens5f2d5"`; +exports[`system > 1337 > networkInterface > with {"interfaceSchema":"slot"} 1`] = `"ens1f4d5"`; exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"index"} 1`] = `"eno2"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enx482348705389"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"mac"} 1`] = `"enx4247584fb16a"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"P5enp1s2f5d0"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"pci"} 1`] = `"P1enp2s4f5d9"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"slot"} 1`] = `"ens2d2"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"en","interfaceSchema":"slot"} 1`] = `"ens2f2d3"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"en"} 1`] = `"ens5f2d5"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"en"} 1`] = `"ens1f4d5"`; exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"index"} 1`] = `"wlo2"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlx482348705389"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"mac"} 1`] = `"wlx4247584fb16a"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"P5wlp1s2f5d0"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"pci"} 1`] = `"P1wlp2s4f5d9"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"slot"} 1`] = `"wls2d2"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"wl","interfaceSchema":"slot"} 1`] = `"wls2f2d3"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"wl"} 1`] = `"wls5f2d5"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"wl"} 1`] = `"wls1f4d5"`; exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"index"} 1`] = `"wwo2"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwx482348705389"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"mac"} 1`] = `"wwx4247584fb16a"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"P5wwp1s2f5d0"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"pci"} 1`] = `"P1wwp2s4f5d9"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"slot"} 1`] = `"wws2d2"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"ww","interfaceSchema":"slot"} 1`] = `"wws2f2d3"`; -exports[`system > 1337 > networkInterface > with {"interfaceType":"ww"} 1`] = `"wws5f2d5"`; +exports[`system > 1337 > networkInterface > with {"interfaceType":"ww"} 1`] = `"wws1f4d5"`; -exports[`system > 1337 > networkInterface > with {} 1`] = `"enx234870538945"`; +exports[`system > 1337 > networkInterface > with {} 1`] = `"eno2"`; -exports[`system > 1337 > semver 1`] = `"2.5.1"`; +exports[`system > 1337 > semver 1`] = `"2.1.2"`; diff --git a/test/modules/__snapshots__/vehicle.spec.ts.snap b/test/modules/__snapshots__/vehicle.spec.ts.snap index 2affc34e1e3..ed73c8c811f 100644 --- a/test/modules/__snapshots__/vehicle.spec.ts.snap +++ b/test/modules/__snapshots__/vehicle.spec.ts.snap @@ -12,11 +12,11 @@ exports[`vehicle > 42 > model 1`] = `"Alpine"`; exports[`vehicle > 42 > type 1`] = `"Extended Cab Pickup"`; -exports[`vehicle > 42 > vehicle 1`] = `"Ford Jetta"`; +exports[`vehicle > 42 > vehicle 1`] = `"Ford V90"`; -exports[`vehicle > 42 > vin 1`] = `"CTY6RSKK5ED315227"`; +exports[`vehicle > 42 > vin 1`] = `"CYRK551VKPAZ84919"`; -exports[`vehicle > 42 > vrm 1`] = `"JU91TUP"`; +exports[`vehicle > 42 > vrm 1`] = `"JY75EEB"`; exports[`vehicle > 1211 > bicycle 1`] = `"Triathlon/Time Trial Bicycle"`; @@ -30,11 +30,11 @@ exports[`vehicle > 1211 > model 1`] = `"2"`; exports[`vehicle > 1211 > type 1`] = `"Wagon"`; -exports[`vehicle > 1211 > vehicle 1`] = `"Toyota Durango"`; +exports[`vehicle > 1211 > vehicle 1`] = `"Toyota Aventador"`; -exports[`vehicle > 1211 > vin 1`] = `"XFWS74Z1N5S678767"`; +exports[`vehicle > 1211 > vin 1`] = `"XW7ZNNSBNTUM84790"`; -exports[`vehicle > 1211 > vrm 1`] = `"YL87FDZ"`; +exports[`vehicle > 1211 > vrm 1`] = `"YX29RRT"`; exports[`vehicle > 1337 > bicycle 1`] = `"Cyclocross Bicycle"`; @@ -48,8 +48,8 @@ exports[`vehicle > 1337 > model 1`] = `"Colorado"`; exports[`vehicle > 1337 > type 1`] = `"Coupe"`; -exports[`vehicle > 1337 > vehicle 1`] = `"Dodge Model 3"`; +exports[`vehicle > 1337 > vehicle 1`] = `"Dodge Volt"`; -exports[`vehicle > 1337 > vin 1`] = `"8J579HF1A7MK33574"`; +exports[`vehicle > 1337 > vin 1`] = `"859FAH8ZR3JL21255"`; -exports[`vehicle > 1337 > vrm 1`] = `"GO12HOL"`; +exports[`vehicle > 1337 > vrm 1`] = `"GE24ING"`; diff --git a/test/modules/__snapshots__/word.spec.ts.snap b/test/modules/__snapshots__/word.spec.ts.snap index 475fd2d67f6..62dafff9504 100644 --- a/test/modules/__snapshots__/word.spec.ts.snap +++ b/test/modules/__snapshots__/word.spec.ts.snap @@ -72,17 +72,17 @@ exports[`word > 42 > preposition > with options.length and options.strategy 1`] exports[`word > 42 > preposition > with options.strategy 1`] = `"a"`; -exports[`word > 42 > sample > noArgs 1`] = `"eek"`; +exports[`word > 42 > sample > noArgs 1`] = `"bleakly"`; -exports[`word > 42 > sample > with length = 10 1`] = `"eek"`; +exports[`word > 42 > sample > with length = 10 1`] = `"arrogantly"`; -exports[`word > 42 > sample > with length = 20 1`] = `"eek"`; +exports[`word > 42 > sample > with length = 20 1`] = `"bleakly"`; -exports[`word > 42 > sample > with options.length 1`] = `"eek"`; +exports[`word > 42 > sample > with options.length 1`] = `"arrogantly"`; -exports[`word > 42 > sample > with options.length and options.strategy 1`] = `"gadzooks"`; +exports[`word > 42 > sample > with options.length and options.strategy 1`] = `"enthusiastically"`; -exports[`word > 42 > sample > with options.strategy 1`] = `"aw"`; +exports[`word > 42 > sample > with options.strategy 1`] = `"far"`; exports[`word > 42 > verb > noArgs 1`] = `"furrow"`; @@ -96,15 +96,15 @@ exports[`word > 42 > verb > with options.length and options.strategy 1`] = `"ins exports[`word > 42 > verb > with options.strategy 1`] = `"cc"`; -exports[`word > 42 > words > noArgs 1`] = `"nondisclosure stud"`; +exports[`word > 42 > words > noArgs 1`] = `"unnaturally dreamily"`; -exports[`word > 42 > words > with count = 10 1`] = `"eek loudly alibi abnormally aw grenade nor without connote mind"`; +exports[`word > 42 > words > with count = 10 1`] = `"bleakly counsellor gee psst why meh ugh valuable wherever without"`; -exports[`word > 42 > words > with count = 20 1`] = `"eek loudly alibi abnormally aw grenade nor without connote mind power till gadzooks yippee unban generous between old-fashioned yowza hoof"`; +exports[`word > 42 > words > with count = 20 1`] = `"bleakly counsellor gee psst why meh ugh valuable wherever without savage across amidst incomplete zowie compost usefully huddle whoa watchmaker"`; -exports[`word > 42 > words > with options.count 1`] = `"eek loudly alibi abnormally aw grenade nor without connote mind"`; +exports[`word > 42 > words > with options.count 1`] = `"bleakly counsellor gee psst why meh ugh valuable wherever without"`; -exports[`word > 42 > words > with options.count range 1`] = `"nondisclosure stud across dreamily accurate circumvent boo news loftily through devoice about when boohoo graze busily to grouchy beneath"`; +exports[`word > 42 > words > with options.count range 1`] = `"unnaturally dreamily ceiling news through anything delightful bowed indeed whenever after happily reinvest although atop upon provided smolt brr"`; exports[`word > 1211 > adjective > noArgs 1`] = `"vicious"`; @@ -178,17 +178,17 @@ exports[`word > 1211 > preposition > with options.length and options.strategy 1` exports[`word > 1211 > preposition > with options.strategy 1`] = `"a"`; -exports[`word > 1211 > sample > noArgs 1`] = `"youthfully"`; +exports[`word > 1211 > sample > noArgs 1`] = `"slow"`; -exports[`word > 1211 > sample > with length = 10 1`] = `"youthfully"`; +exports[`word > 1211 > sample > with length = 10 1`] = `"scientific"`; -exports[`word > 1211 > sample > with length = 20 1`] = `"youthfully"`; +exports[`word > 1211 > sample > with length = 20 1`] = `"slow"`; -exports[`word > 1211 > sample > with options.length 1`] = `"youthfully"`; +exports[`word > 1211 > sample > with options.length 1`] = `"scientific"`; -exports[`word > 1211 > sample > with options.length and options.strategy 1`] = `"enthusiastically"`; +exports[`word > 1211 > sample > with options.length and options.strategy 1`] = `"well-documented"`; -exports[`word > 1211 > sample > with options.strategy 1`] = `"too"`; +exports[`word > 1211 > sample > with options.strategy 1`] = `"sad"`; exports[`word > 1211 > verb > noArgs 1`] = `"trick"`; @@ -202,15 +202,15 @@ exports[`word > 1211 > verb > with options.length and options.strategy 1`] = `"i exports[`word > 1211 > verb > with options.strategy 1`] = `"up"`; -exports[`word > 1211 > words > noArgs 1`] = `"although instantly though"`; +exports[`word > 1211 > words > noArgs 1`] = `"gripping unnaturally phew"`; -exports[`word > 1211 > words > with count = 10 1`] = `"youthfully woot speedily gracefully poorly hybridization aw contort third monument"`; +exports[`word > 1211 > words > with count = 10 1`] = `"slow infinite woodchuck gracefully if digitize ha furthermore nor true"`; -exports[`word > 1211 > words > with count = 20 1`] = `"youthfully woot speedily gracefully poorly hybridization aw contort third monument civilize for moose moult schoolhouse consequently whether per upon but"`; +exports[`word > 1211 > words > with count = 20 1`] = `"slow infinite woodchuck gracefully if digitize ha furthermore nor true ugh fooey yippee unwieldy dimpled towel untrue trunk although puzzled"`; -exports[`word > 1211 > words > with options.count 1`] = `"youthfully woot speedily gracefully poorly hybridization aw contort third monument"`; +exports[`word > 1211 > words > with options.count 1`] = `"slow infinite woodchuck gracefully if digitize ha furthermore nor true"`; -exports[`word > 1211 > words > with options.count range 1`] = `"although instantly though which zowie salesman except pumpernickel friendly contest arena kindheartedly nifty combination out pencil interpenetrate minus upchange excitedly"`; +exports[`word > 1211 > words > with options.count range 1`] = `"gripping unnaturally phew sedately contest harrow combination pencil so early when tin organisation miserly via nightgown colossal critical fairly ordinary"`; exports[`word > 1337 > adjective > noArgs 1`] = `"fair"`; @@ -284,13 +284,13 @@ exports[`word > 1337 > preposition > with options.length and options.strategy 1` exports[`word > 1337 > preposition > with options.strategy 1`] = `"a"`; -exports[`word > 1337 > sample > noArgs 1`] = `"nor"`; +exports[`word > 1337 > sample > noArgs 1`] = `"how"`; -exports[`word > 1337 > sample > with length = 10 1`] = `"nor"`; +exports[`word > 1337 > sample > with length = 10 1`] = `"how"`; -exports[`word > 1337 > sample > with length = 20 1`] = `"nor"`; +exports[`word > 1337 > sample > with length = 20 1`] = `"how"`; -exports[`word > 1337 > sample > with options.length 1`] = `"nor"`; +exports[`word > 1337 > sample > with options.length 1`] = `"how"`; exports[`word > 1337 > sample > with options.length and options.strategy 1`] = `"consequently"`; @@ -308,12 +308,12 @@ exports[`word > 1337 > verb > with options.length and options.strategy 1`] = `"c exports[`word > 1337 > verb > with options.strategy 1`] = `"be"`; -exports[`word > 1337 > words > noArgs 1`] = `"although"`; +exports[`word > 1337 > words > noArgs 1`] = `"weedkiller"`; -exports[`word > 1337 > words > with count = 10 1`] = `"nor brr instead anenst intently hard lashes team utilize respectful"`; +exports[`word > 1337 > words > with count = 10 1`] = `"how yet sleepy construction including safely kiwi actually actualise vaguely"`; -exports[`word > 1337 > words > with count = 20 1`] = `"nor brr instead anenst intently hard lashes team utilize respectful conceal the where duh ugh emotion lavish rudely planet servant"`; +exports[`word > 1337 > words > with count = 20 1`] = `"how yet sleepy construction including safely kiwi actually actualise vaguely failing vaguely mindless grapple whoever scarily replace duh lazily sans"`; -exports[`word > 1337 > words > with options.count 1`] = `"nor brr instead anenst intently hard lashes team utilize respectful"`; +exports[`word > 1337 > words > with options.count 1`] = `"how yet sleepy construction including safely kiwi actually actualise vaguely"`; -exports[`word > 1337 > words > with options.count range 1`] = `"although within along limply lovingly elegantly imply maid underneath advanced nor abrogate oof within gosh against egg rush"`; +exports[`word > 1337 > words > with options.count range 1`] = `"weedkiller drat dental into advanced yuck waterskiing busily ouch inasmuch grieve sad enraged or gee grounded phew now"`; diff --git a/test/modules/date.spec.ts b/test/modules/date.spec.ts index 9d4ae9adf4b..d2e0833719c 100644 --- a/test/modules/date.spec.ts +++ b/test/modules/date.spec.ts @@ -830,22 +830,23 @@ describe('date', () => { faker.setDefaultRefDate(() => new Date(Date.UTC(2020, 0, 1))); faker.seed(20200101); const date = faker.date.past(); - expect(date).toEqual(new Date('2019-02-25T21:52:41.824Z')); + expect(date).toBeInstanceOf(Date); + expect(date).toMatchInlineSnapshot('2019-02-25T21:52:41.819Z'); faker.seed(20200101); const date2 = faker.date.past(); - expect(date2).toEqual(new Date('2019-02-25T21:52:41.824Z')); + expect(date2).toMatchInlineSnapshot('2019-02-25T21:52:41.819Z'); }); it('should use the refDateSource when refDate is not provided (with value)', () => { faker.setDefaultRefDate(Date.UTC(2020, 0, 1)); faker.seed(20200101); const date = faker.date.past(); - expect(date).toEqual(new Date('2019-02-25T21:52:41.824Z')); + expect(date).toMatchInlineSnapshot('2019-02-25T21:52:41.819Z'); faker.seed(20200101); const date2 = faker.date.past(); - expect(date2).toEqual(new Date('2019-02-25T21:52:41.824Z')); + expect(date2).toMatchInlineSnapshot('2019-02-25T21:52:41.819Z'); }); }); }); diff --git a/test/modules/helpers.spec.ts b/test/modules/helpers.spec.ts index c389fa8e800..1ba43c702dc 100644 --- a/test/modules/helpers.spec.ts +++ b/test/modules/helpers.spec.ts @@ -798,14 +798,6 @@ describe('helpers', () => { expect(unique).not.toContainDuplicates(); expect(unique).toHaveLength(2); }); - - it('works as expected when seeded', () => { - const input = ['a', 'a', 'a', 'a', 'a', 'f', 'g', 'h', 'i', 'j']; - const length = 5; - faker.seed(100); - const unique = faker.helpers.uniqueArray(input, length); - expect(unique).toStrictEqual(['g', 'a', 'i', 'f', 'j']); - }); }); describe('mustache()', () => { @@ -1179,4 +1171,13 @@ describe('helpers', () => { }); } ); + + describe('uniqueArray', () => { + it('works as expected when seeded', () => { + const input = ['a', 'a', 'a', 'a', 'a', 'f', 'g', 'h', 'i', 'j']; + faker.seed(100); + const unique = faker.helpers.uniqueArray(input, 5); + expect(unique).toStrictEqual(['j', 'a', 'g', 'i', 'f']); + }); + }); }); diff --git a/test/simple-faker.spec.ts b/test/simple-faker.spec.ts index 36536b212b0..6602ed0f0d5 100644 --- a/test/simple-faker.spec.ts +++ b/test/simple-faker.spec.ts @@ -49,14 +49,18 @@ describe('simpleFaker', () => { simpleFaker.seed(1); const actual = simpleFaker.string.uuid(); - expect(actual).toBe('6fbe024f-2316-4265-aa6e-8d65a837e308'); + expect(actual).toMatchInlineSnapshot( + '"6b042125-686a-43e0-8a68-23cf5bee102e"' + ); }); it('seed(number[])', () => { simpleFaker.seed([1, 2, 3]); const actual = simpleFaker.string.uuid(); - expect(actual).toBe('95e97ae6-08ee-492f-9895-ec8be3410e88'); + expect(actual).toMatchInlineSnapshot( + '"9e7e0e9f-9e8e-4408-b5b1-8002907d7dd6"' + ); }); });