@anil-labs/factory 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/LICENSE +21 -0
  3. package/README.md +371 -0
  4. package/dist/builders/index.d.cts +40 -0
  5. package/dist/builders/index.d.ts +40 -0
  6. package/dist/chunks/faker-BOtDMmjd.cjs +1430 -0
  7. package/dist/chunks/faker-BOtDMmjd.cjs.map +1 -0
  8. package/dist/chunks/faker-BlEhpR26.mjs +1287 -0
  9. package/dist/chunks/faker-BlEhpR26.mjs.map +1 -0
  10. package/dist/chunks/persist-DcARfeC-.cjs +134 -0
  11. package/dist/chunks/persist-DcARfeC-.cjs.map +1 -0
  12. package/dist/chunks/persist-ZGX3NWMF.mjs +117 -0
  13. package/dist/chunks/persist-ZGX3NWMF.mjs.map +1 -0
  14. package/dist/core/collection.d.cts +41 -0
  15. package/dist/core/collection.d.ts +41 -0
  16. package/dist/core/factory.d.cts +115 -0
  17. package/dist/core/factory.d.ts +115 -0
  18. package/dist/core/index.d.cts +6 -0
  19. package/dist/core/index.d.ts +6 -0
  20. package/dist/core/registry.d.cts +20 -0
  21. package/dist/core/registry.d.ts +20 -0
  22. package/dist/core/sequence.d.cts +36 -0
  23. package/dist/core/sequence.d.ts +36 -0
  24. package/dist/core/types.d.cts +47 -0
  25. package/dist/core/types.d.ts +47 -0
  26. package/dist/faker/color.d.cts +22 -0
  27. package/dist/faker/color.d.ts +22 -0
  28. package/dist/faker/commerce.d.cts +21 -0
  29. package/dist/faker/commerce.d.ts +21 -0
  30. package/dist/faker/company.d.cts +20 -0
  31. package/dist/faker/company.d.ts +20 -0
  32. package/dist/faker/datatype.d.cts +16 -0
  33. package/dist/faker/datatype.d.ts +16 -0
  34. package/dist/faker/date.d.cts +29 -0
  35. package/dist/faker/date.d.ts +29 -0
  36. package/dist/faker/faker.d.cts +82 -0
  37. package/dist/faker/faker.d.ts +82 -0
  38. package/dist/faker/finance.d.cts +25 -0
  39. package/dist/faker/finance.d.ts +25 -0
  40. package/dist/faker/helpers.d.cts +52 -0
  41. package/dist/faker/helpers.d.ts +52 -0
  42. package/dist/faker/image.d.cts +22 -0
  43. package/dist/faker/image.d.ts +22 -0
  44. package/dist/faker/index.d.cts +21 -0
  45. package/dist/faker/index.d.ts +21 -0
  46. package/dist/faker/internet.d.cts +33 -0
  47. package/dist/faker/internet.d.ts +33 -0
  48. package/dist/faker/locale.d.cts +26 -0
  49. package/dist/faker/locale.d.ts +26 -0
  50. package/dist/faker/location.d.cts +30 -0
  51. package/dist/faker/location.d.ts +30 -0
  52. package/dist/faker/lorem.d.cts +26 -0
  53. package/dist/faker/lorem.d.ts +26 -0
  54. package/dist/faker/number.d.cts +31 -0
  55. package/dist/faker/number.d.ts +31 -0
  56. package/dist/faker/person.d.cts +29 -0
  57. package/dist/faker/person.d.ts +29 -0
  58. package/dist/faker/regex.d.cts +19 -0
  59. package/dist/faker/regex.d.ts +19 -0
  60. package/dist/faker/string.d.cts +33 -0
  61. package/dist/faker/string.d.ts +33 -0
  62. package/dist/faker/system.d.cts +29 -0
  63. package/dist/faker/system.d.ts +29 -0
  64. package/dist/faker.cjs +26 -0
  65. package/dist/faker.mjs +3 -0
  66. package/dist/index.cjs +635 -0
  67. package/dist/index.cjs.map +1 -0
  68. package/dist/index.d.cts +37 -0
  69. package/dist/index.d.ts +37 -0
  70. package/dist/index.mjs +596 -0
  71. package/dist/index.mjs.map +1 -0
  72. package/dist/locales/en.cjs +351 -0
  73. package/dist/locales/en.cjs.map +1 -0
  74. package/dist/locales/en.d.cts +11 -0
  75. package/dist/locales/en.d.ts +11 -0
  76. package/dist/locales/en.mjs +350 -0
  77. package/dist/locales/en.mjs.map +1 -0
  78. package/dist/locales/types.d.cts +30 -0
  79. package/dist/locales/types.d.ts +30 -0
  80. package/dist/persist/console.d.cts +15 -0
  81. package/dist/persist/console.d.ts +15 -0
  82. package/dist/persist/http.d.cts +42 -0
  83. package/dist/persist/http.d.ts +42 -0
  84. package/dist/persist/index.d.cts +5 -0
  85. package/dist/persist/index.d.ts +5 -0
  86. package/dist/persist/memory.d.cts +26 -0
  87. package/dist/persist/memory.d.ts +26 -0
  88. package/dist/persist.cjs +5 -0
  89. package/dist/persist.mjs +2 -0
  90. package/dist/prng/index.d.cts +5 -0
  91. package/dist/prng/index.d.ts +5 -0
  92. package/dist/prng/mulberry32.d.cts +19 -0
  93. package/dist/prng/mulberry32.d.ts +19 -0
  94. package/dist/prng/types.d.cts +23 -0
  95. package/dist/prng/types.d.ts +23 -0
  96. package/dist/snapshot/index.d.cts +16 -0
  97. package/dist/snapshot/index.d.ts +16 -0
  98. package/package.json +136 -0
@@ -0,0 +1,351 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/locales/en.ts
3
+ /**
4
+ * English (US) locale corpus. The default and the only one shipped — adding
5
+ * locales is a downstream concern via `registerLocale()`.
6
+ *
7
+ * Kept small on purpose: enough variety for realistic test data without
8
+ * inflating the bundle. Production faker.js ships hundreds of names per
9
+ * locale; we ship ~25 of each. Tests should not depend on specific values.
10
+ */
11
+ var en = {
12
+ title: "English (US)",
13
+ firstNames: [
14
+ "Adam",
15
+ "Alex",
16
+ "Amara",
17
+ "Ava",
18
+ "Benjamin",
19
+ "Carlos",
20
+ "Charlotte",
21
+ "David",
22
+ "Diego",
23
+ "Elena",
24
+ "Emma",
25
+ "Fatima",
26
+ "George",
27
+ "Hannah",
28
+ "Isabella",
29
+ "James",
30
+ "Jin",
31
+ "Kira",
32
+ "Liam",
33
+ "Maria",
34
+ "Noah",
35
+ "Olivia",
36
+ "Priya",
37
+ "Sarah",
38
+ "William",
39
+ "Yuki"
40
+ ],
41
+ firstNamesFemale: [
42
+ "Amara",
43
+ "Ava",
44
+ "Charlotte",
45
+ "Elena",
46
+ "Emma",
47
+ "Fatima",
48
+ "Hannah",
49
+ "Isabella",
50
+ "Kira",
51
+ "Maria",
52
+ "Olivia",
53
+ "Priya",
54
+ "Sarah",
55
+ "Yuki"
56
+ ],
57
+ firstNamesMale: [
58
+ "Adam",
59
+ "Alex",
60
+ "Benjamin",
61
+ "Carlos",
62
+ "David",
63
+ "Diego",
64
+ "George",
65
+ "James",
66
+ "Jin",
67
+ "Liam",
68
+ "Noah",
69
+ "William"
70
+ ],
71
+ lastNames: [
72
+ "Anderson",
73
+ "Brown",
74
+ "Chen",
75
+ "Davis",
76
+ "Garcia",
77
+ "Gupta",
78
+ "Hernandez",
79
+ "Jackson",
80
+ "Johnson",
81
+ "Kim",
82
+ "Lee",
83
+ "Lopez",
84
+ "Martin",
85
+ "Miller",
86
+ "Patel",
87
+ "Rodriguez",
88
+ "Sato",
89
+ "Singh",
90
+ "Smith",
91
+ "Taylor",
92
+ "Thompson",
93
+ "Wang",
94
+ "Williams",
95
+ "Wilson"
96
+ ],
97
+ prefixes: [
98
+ "Dr.",
99
+ "Mr.",
100
+ "Mrs.",
101
+ "Ms.",
102
+ "Prof."
103
+ ],
104
+ suffixes: [
105
+ "Jr.",
106
+ "Sr.",
107
+ "II",
108
+ "III",
109
+ "PhD",
110
+ "MD"
111
+ ],
112
+ streetNames: [
113
+ "Main",
114
+ "Oak",
115
+ "Pine",
116
+ "Maple",
117
+ "Cedar",
118
+ "Elm",
119
+ "Lake",
120
+ "Hill",
121
+ "Park",
122
+ "Spring",
123
+ "River",
124
+ "Valley",
125
+ "Forest",
126
+ "Sunset",
127
+ "Highland"
128
+ ],
129
+ streetSuffixes: [
130
+ "St",
131
+ "Ave",
132
+ "Blvd",
133
+ "Rd",
134
+ "Ln",
135
+ "Dr",
136
+ "Way",
137
+ "Ct",
138
+ "Pl"
139
+ ],
140
+ cities: [
141
+ "Austin",
142
+ "Boston",
143
+ "Chicago",
144
+ "Denver",
145
+ "Houston",
146
+ "Los Angeles",
147
+ "Miami",
148
+ "Nashville",
149
+ "New York",
150
+ "Philadelphia",
151
+ "Phoenix",
152
+ "Portland",
153
+ "San Diego",
154
+ "San Francisco",
155
+ "Seattle"
156
+ ],
157
+ states: [
158
+ "AL",
159
+ "AK",
160
+ "AZ",
161
+ "CA",
162
+ "CO",
163
+ "CT",
164
+ "FL",
165
+ "GA",
166
+ "IL",
167
+ "MA",
168
+ "NY",
169
+ "OH",
170
+ "OR",
171
+ "PA",
172
+ "TX",
173
+ "WA"
174
+ ],
175
+ country: "United States",
176
+ countries: [
177
+ "United States",
178
+ "Canada",
179
+ "United Kingdom",
180
+ "Australia",
181
+ "Germany",
182
+ "France",
183
+ "Spain",
184
+ "Italy",
185
+ "Japan",
186
+ "Brazil",
187
+ "India",
188
+ "Mexico",
189
+ "Nepal"
190
+ ],
191
+ emailDomains: [
192
+ "example.com",
193
+ "gmail.com",
194
+ "outlook.com",
195
+ "yahoo.com",
196
+ "hotmail.com",
197
+ "protonmail.com",
198
+ "fastmail.com"
199
+ ],
200
+ tlds: [
201
+ "com",
202
+ "net",
203
+ "org",
204
+ "io",
205
+ "dev",
206
+ "app",
207
+ "co"
208
+ ],
209
+ companies: [
210
+ "Acme Corp",
211
+ "Aperture Science",
212
+ "Cyberdyne Systems",
213
+ "Globex",
214
+ "Hooli",
215
+ "Initech",
216
+ "Massive Dynamic",
217
+ "Pied Piper",
218
+ "Stark Industries",
219
+ "Umbrella Inc",
220
+ "Wayne Enterprises",
221
+ "Wonka Industries"
222
+ ],
223
+ jobTitles: [
224
+ "Backend Developer",
225
+ "Data Analyst",
226
+ "Designer",
227
+ "DevOps Engineer",
228
+ "Engineering Manager",
229
+ "Frontend Developer",
230
+ "Full Stack Developer",
231
+ "HR Manager",
232
+ "Marketing Manager",
233
+ "Product Manager",
234
+ "QA Engineer",
235
+ "Sales Representative",
236
+ "Software Engineer",
237
+ "Tech Lead"
238
+ ],
239
+ buzzPhrases: [
240
+ "leverage cross-platform synergies",
241
+ "unlock turn-key paradigms",
242
+ "engineer scalable mindshare",
243
+ "reinvent vertical e-commerce",
244
+ "evolve frictionless platforms"
245
+ ],
246
+ productNames: [
247
+ "Aerogel Mug",
248
+ "Bamboo Notebook",
249
+ "Cordless Drill",
250
+ "Desk Lamp",
251
+ "Espresso Press",
252
+ "Floor Cushion",
253
+ "Glass Carafe",
254
+ "Headphones",
255
+ "Insulated Tumbler",
256
+ "Joystick",
257
+ "Kettle",
258
+ "Linen Blanket"
259
+ ],
260
+ departments: [
261
+ "Books",
262
+ "Clothing",
263
+ "Electronics",
264
+ "Garden",
265
+ "Grocery",
266
+ "Health",
267
+ "Home",
268
+ "Kids",
269
+ "Movies",
270
+ "Music",
271
+ "Outdoors",
272
+ "Toys"
273
+ ],
274
+ colors: [
275
+ "red",
276
+ "blue",
277
+ "green",
278
+ "yellow",
279
+ "purple",
280
+ "orange",
281
+ "pink",
282
+ "cyan",
283
+ "teal",
284
+ "indigo",
285
+ "lime",
286
+ "amber",
287
+ "brown",
288
+ "grey",
289
+ "black",
290
+ "white"
291
+ ],
292
+ loremWords: [
293
+ "lorem",
294
+ "ipsum",
295
+ "dolor",
296
+ "sit",
297
+ "amet",
298
+ "consectetur",
299
+ "adipiscing",
300
+ "elit",
301
+ "sed",
302
+ "do",
303
+ "eiusmod",
304
+ "tempor",
305
+ "incididunt",
306
+ "ut",
307
+ "labore",
308
+ "et",
309
+ "dolore",
310
+ "magna",
311
+ "aliqua",
312
+ "enim",
313
+ "ad",
314
+ "minim",
315
+ "veniam",
316
+ "quis",
317
+ "nostrud",
318
+ "exercitation"
319
+ ],
320
+ mimeTypes: [
321
+ "application/json",
322
+ "application/pdf",
323
+ "application/zip",
324
+ "audio/mpeg",
325
+ "image/gif",
326
+ "image/jpeg",
327
+ "image/png",
328
+ "image/webp",
329
+ "text/csv",
330
+ "text/html",
331
+ "text/plain",
332
+ "video/mp4"
333
+ ],
334
+ fileExtensions: [
335
+ "csv",
336
+ "gif",
337
+ "jpg",
338
+ "json",
339
+ "mp3",
340
+ "mp4",
341
+ "pdf",
342
+ "png",
343
+ "txt",
344
+ "webp",
345
+ "zip"
346
+ ]
347
+ };
348
+ //#endregion
349
+ exports.en = en;
350
+
351
+ //# sourceMappingURL=en.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"en.cjs","names":[],"sources":["../../src/locales/en.ts"],"sourcesContent":["import type { LocaleData } from './types'\n\nexport type { LocaleData }\n\n/**\n * English (US) locale corpus. The default and the only one shipped — adding\n * locales is a downstream concern via `registerLocale()`.\n *\n * Kept small on purpose: enough variety for realistic test data without\n * inflating the bundle. Production faker.js ships hundreds of names per\n * locale; we ship ~25 of each. Tests should not depend on specific values.\n */\nexport const en: LocaleData = {\n title: 'English (US)',\n\n firstNames: [\n 'Adam',\n 'Alex',\n 'Amara',\n 'Ava',\n 'Benjamin',\n 'Carlos',\n 'Charlotte',\n 'David',\n 'Diego',\n 'Elena',\n 'Emma',\n 'Fatima',\n 'George',\n 'Hannah',\n 'Isabella',\n 'James',\n 'Jin',\n 'Kira',\n 'Liam',\n 'Maria',\n 'Noah',\n 'Olivia',\n 'Priya',\n 'Sarah',\n 'William',\n 'Yuki',\n ],\n firstNamesFemale: [\n 'Amara',\n 'Ava',\n 'Charlotte',\n 'Elena',\n 'Emma',\n 'Fatima',\n 'Hannah',\n 'Isabella',\n 'Kira',\n 'Maria',\n 'Olivia',\n 'Priya',\n 'Sarah',\n 'Yuki',\n ],\n firstNamesMale: [\n 'Adam',\n 'Alex',\n 'Benjamin',\n 'Carlos',\n 'David',\n 'Diego',\n 'George',\n 'James',\n 'Jin',\n 'Liam',\n 'Noah',\n 'William',\n ],\n lastNames: [\n 'Anderson',\n 'Brown',\n 'Chen',\n 'Davis',\n 'Garcia',\n 'Gupta',\n 'Hernandez',\n 'Jackson',\n 'Johnson',\n 'Kim',\n 'Lee',\n 'Lopez',\n 'Martin',\n 'Miller',\n 'Patel',\n 'Rodriguez',\n 'Sato',\n 'Singh',\n 'Smith',\n 'Taylor',\n 'Thompson',\n 'Wang',\n 'Williams',\n 'Wilson',\n ],\n prefixes: ['Dr.', 'Mr.', 'Mrs.', 'Ms.', 'Prof.'],\n suffixes: ['Jr.', 'Sr.', 'II', 'III', 'PhD', 'MD'],\n\n streetNames: [\n 'Main',\n 'Oak',\n 'Pine',\n 'Maple',\n 'Cedar',\n 'Elm',\n 'Lake',\n 'Hill',\n 'Park',\n 'Spring',\n 'River',\n 'Valley',\n 'Forest',\n 'Sunset',\n 'Highland',\n ],\n streetSuffixes: ['St', 'Ave', 'Blvd', 'Rd', 'Ln', 'Dr', 'Way', 'Ct', 'Pl'],\n cities: [\n 'Austin',\n 'Boston',\n 'Chicago',\n 'Denver',\n 'Houston',\n 'Los Angeles',\n 'Miami',\n 'Nashville',\n 'New York',\n 'Philadelphia',\n 'Phoenix',\n 'Portland',\n 'San Diego',\n 'San Francisco',\n 'Seattle',\n ],\n states: [\n 'AL',\n 'AK',\n 'AZ',\n 'CA',\n 'CO',\n 'CT',\n 'FL',\n 'GA',\n 'IL',\n 'MA',\n 'NY',\n 'OH',\n 'OR',\n 'PA',\n 'TX',\n 'WA',\n ],\n country: 'United States',\n countries: [\n 'United States',\n 'Canada',\n 'United Kingdom',\n 'Australia',\n 'Germany',\n 'France',\n 'Spain',\n 'Italy',\n 'Japan',\n 'Brazil',\n 'India',\n 'Mexico',\n 'Nepal',\n ],\n\n emailDomains: [\n 'example.com',\n 'gmail.com',\n 'outlook.com',\n 'yahoo.com',\n 'hotmail.com',\n 'protonmail.com',\n 'fastmail.com',\n ],\n tlds: ['com', 'net', 'org', 'io', 'dev', 'app', 'co'],\n\n companies: [\n 'Acme Corp',\n 'Aperture Science',\n 'Cyberdyne Systems',\n 'Globex',\n 'Hooli',\n 'Initech',\n 'Massive Dynamic',\n 'Pied Piper',\n 'Stark Industries',\n 'Umbrella Inc',\n 'Wayne Enterprises',\n 'Wonka Industries',\n ],\n jobTitles: [\n 'Backend Developer',\n 'Data Analyst',\n 'Designer',\n 'DevOps Engineer',\n 'Engineering Manager',\n 'Frontend Developer',\n 'Full Stack Developer',\n 'HR Manager',\n 'Marketing Manager',\n 'Product Manager',\n 'QA Engineer',\n 'Sales Representative',\n 'Software Engineer',\n 'Tech Lead',\n ],\n buzzPhrases: [\n 'leverage cross-platform synergies',\n 'unlock turn-key paradigms',\n 'engineer scalable mindshare',\n 'reinvent vertical e-commerce',\n 'evolve frictionless platforms',\n ],\n\n productNames: [\n 'Aerogel Mug',\n 'Bamboo Notebook',\n 'Cordless Drill',\n 'Desk Lamp',\n 'Espresso Press',\n 'Floor Cushion',\n 'Glass Carafe',\n 'Headphones',\n 'Insulated Tumbler',\n 'Joystick',\n 'Kettle',\n 'Linen Blanket',\n ],\n departments: [\n 'Books',\n 'Clothing',\n 'Electronics',\n 'Garden',\n 'Grocery',\n 'Health',\n 'Home',\n 'Kids',\n 'Movies',\n 'Music',\n 'Outdoors',\n 'Toys',\n ],\n\n colors: [\n 'red',\n 'blue',\n 'green',\n 'yellow',\n 'purple',\n 'orange',\n 'pink',\n 'cyan',\n 'teal',\n 'indigo',\n 'lime',\n 'amber',\n 'brown',\n 'grey',\n 'black',\n 'white',\n ],\n\n loremWords: [\n 'lorem',\n 'ipsum',\n 'dolor',\n 'sit',\n 'amet',\n 'consectetur',\n 'adipiscing',\n 'elit',\n 'sed',\n 'do',\n 'eiusmod',\n 'tempor',\n 'incididunt',\n 'ut',\n 'labore',\n 'et',\n 'dolore',\n 'magna',\n 'aliqua',\n 'enim',\n 'ad',\n 'minim',\n 'veniam',\n 'quis',\n 'nostrud',\n 'exercitation',\n ],\n\n mimeTypes: [\n 'application/json',\n 'application/pdf',\n 'application/zip',\n 'audio/mpeg',\n 'image/gif',\n 'image/jpeg',\n 'image/png',\n 'image/webp',\n 'text/csv',\n 'text/html',\n 'text/plain',\n 'video/mp4',\n ],\n fileExtensions: ['csv', 'gif', 'jpg', 'json', 'mp3', 'mp4', 'pdf', 'png', 'txt', 'webp', 'zip'],\n}\n"],"mappings":";;;;;;;;;;AAYA,IAAa,KAAiB;CAC5B,OAAO;CAEP,YAAY;EACV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,kBAAkB;EAChB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,gBAAgB;EACd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,WAAW;EACT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,UAAU;EAAC;EAAO;EAAO;EAAQ;EAAO;CAAO;CAC/C,UAAU;EAAC;EAAO;EAAO;EAAM;EAAO;EAAO;CAAI;CAEjD,aAAa;EACX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,gBAAgB;EAAC;EAAM;EAAO;EAAQ;EAAM;EAAM;EAAM;EAAO;EAAM;CAAI;CACzE,QAAQ;EACN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,QAAQ;EACN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,SAAS;CACT,WAAW;EACT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CAEA,cAAc;EACZ;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,MAAM;EAAC;EAAO;EAAO;EAAO;EAAM;EAAO;EAAO;CAAI;CAEpD,WAAW;EACT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,WAAW;EACT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,aAAa;EACX;EACA;EACA;EACA;EACA;CACF;CAEA,cAAc;EACZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,aAAa;EACX;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CAEA,QAAQ;EACN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CAEA,YAAY;EACV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CAEA,WAAW;EACT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CACA,gBAAgB;EAAC;EAAO;EAAO;EAAO;EAAQ;EAAO;EAAO;EAAO;EAAO;EAAO;EAAQ;CAAK;AAChG"}
@@ -0,0 +1,11 @@
1
+ import { LocaleData } from './types';
2
+ export type { LocaleData };
3
+ /**
4
+ * English (US) locale corpus. The default and the only one shipped — adding
5
+ * locales is a downstream concern via `registerLocale()`.
6
+ *
7
+ * Kept small on purpose: enough variety for realistic test data without
8
+ * inflating the bundle. Production faker.js ships hundreds of names per
9
+ * locale; we ship ~25 of each. Tests should not depend on specific values.
10
+ */
11
+ export declare const en: LocaleData;
@@ -0,0 +1,11 @@
1
+ import { LocaleData } from './types';
2
+ export type { LocaleData };
3
+ /**
4
+ * English (US) locale corpus. The default and the only one shipped — adding
5
+ * locales is a downstream concern via `registerLocale()`.
6
+ *
7
+ * Kept small on purpose: enough variety for realistic test data without
8
+ * inflating the bundle. Production faker.js ships hundreds of names per
9
+ * locale; we ship ~25 of each. Tests should not depend on specific values.
10
+ */
11
+ export declare const en: LocaleData;