struct-fakerator 2.6.9 → 2.8.9

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 (300) hide show
  1. package/README.md +148 -93
  2. package/biome.json +30 -26
  3. package/dist/config.d.ts +1 -2
  4. package/dist/config.js +51 -19
  5. package/dist/config.mjs +2 -19
  6. package/dist/config_scheme.d.ts +7 -10
  7. package/dist/config_scheme.js +95 -17
  8. package/dist/config_scheme.mjs +46 -17
  9. package/dist/create_config.d.ts +9 -11
  10. package/dist/create_config.js +110 -18
  11. package/dist/create_config.mjs +60 -17
  12. package/dist/create_config.test.d.ts +1 -2
  13. package/dist/create_generator_fn.d.ts +9 -11
  14. package/dist/create_generator_fn.js +168 -21
  15. package/dist/create_generator_fn.mjs +115 -20
  16. package/dist/create_generator_fn.test.d.ts +1 -2
  17. package/dist/generator_fn.d.ts +1 -2
  18. package/dist/generator_fn.js +54 -22
  19. package/dist/generator_fn.mjs +2 -22
  20. package/dist/index.d.ts +5 -5
  21. package/dist/index.js +107 -44
  22. package/dist/index.mjs +6 -44
  23. package/dist/type.d.ts +10 -12
  24. package/dist/type.js +18 -1
  25. package/dist/type.mjs +0 -1
  26. package/dist/utils/airline.d.ts +14 -3
  27. package/dist/utils/airline.js +46 -15
  28. package/dist/utils/airline.mjs +6 -15
  29. package/dist/utils/animal.d.ts +30 -2
  30. package/dist/utils/animal.js +94 -39
  31. package/dist/utils/animal.mjs +18 -39
  32. package/dist/utils/color.d.ts +41 -3
  33. package/dist/utils/color.js +78 -31
  34. package/dist/utils/color.mjs +14 -31
  35. package/dist/utils/commerce.d.ts +24 -2
  36. package/dist/utils/commerce.js +66 -25
  37. package/dist/utils/commerce.mjs +11 -25
  38. package/dist/utils/common.d.ts +2 -2
  39. package/dist/utils/common.js +37 -9
  40. package/dist/utils/common.mjs +3 -9
  41. package/dist/utils/company.d.ts +18 -2
  42. package/dist/utils/company.js +70 -27
  43. package/dist/utils/company.mjs +12 -27
  44. package/dist/utils/database.d.ts +10 -2
  45. package/dist/utils/database.js +54 -19
  46. package/dist/utils/database.mjs +8 -19
  47. package/dist/utils/datatype.d.ts +4 -2
  48. package/dist/utils/datatype.js +38 -11
  49. package/dist/utils/datatype.mjs +4 -11
  50. package/dist/utils/datetime.d.ts +59 -2
  51. package/dist/utils/datetime.js +78 -31
  52. package/dist/utils/datetime.mjs +14 -31
  53. package/dist/utils/finance.d.ts +62 -3
  54. package/dist/utils/finance.js +110 -47
  55. package/dist/utils/finance.mjs +22 -47
  56. package/dist/utils/food.d.ts +18 -2
  57. package/dist/utils/food.js +70 -27
  58. package/dist/utils/food.mjs +12 -27
  59. package/dist/utils/git.d.ts +18 -2
  60. package/dist/utils/git.js +54 -19
  61. package/dist/utils/git.mjs +8 -19
  62. package/dist/utils/hacker.d.ts +12 -2
  63. package/dist/utils/hacker.js +58 -21
  64. package/dist/utils/hacker.mjs +9 -21
  65. package/dist/utils/image.d.ts +40 -2
  66. package/dist/utils/image.js +66 -25
  67. package/dist/utils/image.mjs +11 -25
  68. package/dist/utils/index.d.ts +26 -28
  69. package/dist/utils/index.js +136 -110
  70. package/dist/utils/index.mjs +27 -110
  71. package/dist/utils/internet.d.ts +77 -3
  72. package/dist/utils/internet.js +114 -49
  73. package/dist/utils/internet.mjs +23 -49
  74. package/dist/utils/location.d.ts +56 -2
  75. package/dist/utils/location.js +98 -41
  76. package/dist/utils/location.mjs +19 -41
  77. package/dist/utils/lorem.d.ts +45 -2
  78. package/dist/utils/lorem.js +70 -27
  79. package/dist/utils/lorem.mjs +12 -27
  80. package/dist/utils/music.d.ts +8 -2
  81. package/dist/utils/music.js +50 -17
  82. package/dist/utils/music.mjs +7 -17
  83. package/dist/utils/number.d.ts +34 -2
  84. package/dist/utils/number.js +58 -21
  85. package/dist/utils/number.mjs +9 -21
  86. package/dist/utils/person.d.ts +34 -3
  87. package/dist/utils/person.js +94 -39
  88. package/dist/utils/person.mjs +18 -39
  89. package/dist/utils/phone.d.ts +6 -2
  90. package/dist/utils/phone.js +42 -13
  91. package/dist/utils/phone.mjs +5 -13
  92. package/dist/utils/science.d.ts +4 -3
  93. package/dist/utils/science.js +42 -13
  94. package/dist/utils/science.mjs +5 -13
  95. package/dist/utils/string.d.ts +69 -2
  96. package/dist/utils/string.js +74 -29
  97. package/dist/utils/string.mjs +13 -29
  98. package/dist/utils/system.d.ts +35 -2
  99. package/dist/utils/system.js +82 -33
  100. package/dist/utils/system.mjs +15 -33
  101. package/dist/utils/utils.d.ts +2 -2
  102. package/dist/utils/utils.js +39 -9
  103. package/dist/utils/utils.mjs +5 -9
  104. package/dist/utils/vehicle.d.ts +18 -2
  105. package/dist/utils/vehicle.js +70 -27
  106. package/dist/utils/vehicle.mjs +12 -27
  107. package/dist/utils/word.d.ts +18 -22
  108. package/dist/utils/word.js +70 -31
  109. package/dist/utils/word.mjs +12 -31
  110. package/package.json +10 -31
  111. package/pnpm-workspace.yaml +2 -0
  112. package/rslib.config.ts +26 -0
  113. package/src/config.ts +3 -3
  114. package/src/config_scheme.ts +1 -1
  115. package/src/create_config.test.ts +0 -1
  116. package/src/create_config.ts +1 -1
  117. package/src/create_generator_fn.test.ts +13 -2
  118. package/src/create_generator_fn.ts +5 -5
  119. package/src/generator_fn.ts +1 -1
  120. package/src/index.ts +2 -2
  121. package/src/type.ts +1 -1
  122. package/src/utils/index.ts +1 -2
  123. package/src/utils/internet.ts +1 -1
  124. package/src/utils/utils.ts +1 -1
  125. package/tsconfig.json +2 -1
  126. package/dist/airline-98MCzMN8.d.ts +0 -26
  127. package/dist/airline-CuAxOEYH.d.mts +0 -26
  128. package/dist/animal-BohQ7s0w.d.mts +0 -53
  129. package/dist/animal-o8BFF7gd.d.ts +0 -53
  130. package/dist/chunk-23I6D5SJ.js +0 -57
  131. package/dist/chunk-3KXIZTCT.mjs +0 -20
  132. package/dist/chunk-3U6BNHWG.mjs +0 -2040
  133. package/dist/chunk-4DDCMYY5.mjs +0 -57
  134. package/dist/chunk-4VNS5WPM.js +0 -42
  135. package/dist/chunk-5KF6D2RT.js +0 -63
  136. package/dist/chunk-5O3L5474.mjs +0 -45
  137. package/dist/chunk-5PCDQHI5.mjs +0 -21
  138. package/dist/chunk-62INTWCD.mjs +0 -36
  139. package/dist/chunk-6HRHPVPM.js +0 -35
  140. package/dist/chunk-6UFUX7X4.js +0 -51
  141. package/dist/chunk-6ZK2LMFM.js +0 -21
  142. package/dist/chunk-7BIWHK77.js +0 -42
  143. package/dist/chunk-7UQSPUCL.mjs +0 -0
  144. package/dist/chunk-7VOPOQZO.js +0 -45
  145. package/dist/chunk-C3RGM3CB.js +0 -67
  146. package/dist/chunk-DGW666Q6.mjs +0 -48
  147. package/dist/chunk-DM5VFX6B.js +0 -17008
  148. package/dist/chunk-DTC7Q7P5.js +0 -45
  149. package/dist/chunk-EM67LVYX.mjs +0 -18
  150. package/dist/chunk-EMCK2BLM.js +0 -45
  151. package/dist/chunk-ES2CYGB7.js +0 -24
  152. package/dist/chunk-ET6EJB33.js +0 -36
  153. package/dist/chunk-EYOBG3PQ.mjs +0 -45
  154. package/dist/chunk-F4GVSNLH.js +0 -30
  155. package/dist/chunk-G43WDHZO.mjs +0 -63
  156. package/dist/chunk-GJSTX6ZS.mjs +0 -24
  157. package/dist/chunk-GYF6YSNX.js +0 -74
  158. package/dist/chunk-HBJP434N.mjs +0 -78
  159. package/dist/chunk-IAR3DUKD.js +0 -49
  160. package/dist/chunk-IL4E3ZNB.js +0 -78
  161. package/dist/chunk-IOXGSFEU.js +0 -20
  162. package/dist/chunk-JB6NCVX3.mjs +0 -63
  163. package/dist/chunk-JGY3KVDU.mjs +0 -45
  164. package/dist/chunk-JWCDEYMY.js +0 -48
  165. package/dist/chunk-LSFOERXQ.js +0 -18
  166. package/dist/chunk-MGR2M7BS.mjs +0 -56
  167. package/dist/chunk-MLJAHDYX.mjs +0 -167
  168. package/dist/chunk-MROZIQOV.mjs +0 -51
  169. package/dist/chunk-NHYNERHW.js +0 -56
  170. package/dist/chunk-PGSJJESY.js +0 -27
  171. package/dist/chunk-QTVSUA5W.mjs +0 -24
  172. package/dist/chunk-QZQ32UPU.mjs +0 -28
  173. package/dist/chunk-R2MQ3IW5.mjs +0 -33
  174. package/dist/chunk-RD2SB2KT.js +0 -36
  175. package/dist/chunk-RDZI4CMI.mjs +0 -42
  176. package/dist/chunk-RTYV5XDU.mjs +0 -36
  177. package/dist/chunk-RZPUHXXO.mjs +0 -49
  178. package/dist/chunk-SD3HVRQN.mjs +0 -48
  179. package/dist/chunk-SN4QTD6R.js +0 -1
  180. package/dist/chunk-TA725QXR.mjs +0 -35
  181. package/dist/chunk-TXAOQHVV.mjs +0 -27
  182. package/dist/chunk-TZ2RKEBF.js +0 -2040
  183. package/dist/chunk-U7MLTDS4.js +0 -167
  184. package/dist/chunk-UIYW7U2O.js +0 -28
  185. package/dist/chunk-UP2JIDGZ.js +0 -81
  186. package/dist/chunk-USLYTOPD.mjs +0 -41
  187. package/dist/chunk-V2AWKRQI.js +0 -26
  188. package/dist/chunk-VE3Q5LC3.mjs +0 -26
  189. package/dist/chunk-VG6JYCUC.mjs +0 -74
  190. package/dist/chunk-VMSMHNPY.js +0 -48
  191. package/dist/chunk-VSZRD7CB.js +0 -33
  192. package/dist/chunk-VX2IFBCP.mjs +0 -17008
  193. package/dist/chunk-WLKNXHFN.mjs +0 -30
  194. package/dist/chunk-XGB3TDIC.mjs +0 -42
  195. package/dist/chunk-YXGKUR3R.js +0 -63
  196. package/dist/chunk-Z5BNMPTX.mjs +0 -81
  197. package/dist/chunk-ZQA42PYM.mjs +0 -67
  198. package/dist/chunk-ZSR4TJQG.js +0 -24
  199. package/dist/chunk-ZWLHVT5O.js +0 -41
  200. package/dist/color-BT6BF8oV.d.mts +0 -61
  201. package/dist/color-lBH29suB.d.ts +0 -61
  202. package/dist/commerce-BqVjXEhQ.d.mts +0 -40
  203. package/dist/commerce-mdOpchjx.d.ts +0 -40
  204. package/dist/common-IR_KozaJ.d.mts +0 -11
  205. package/dist/common-t-ZQebCq.d.ts +0 -11
  206. package/dist/company-C3EU1J7k.d.ts +0 -35
  207. package/dist/company-cR_0hm6U.d.mts +0 -35
  208. package/dist/config-BTjogu5M.d.ts +0 -7
  209. package/dist/config-C1N2Brw-.d.mts +0 -7
  210. package/dist/config.d.mts +0 -2
  211. package/dist/config_scheme.d.mts +0 -32
  212. package/dist/create_config.d.mts +0 -58
  213. package/dist/create_config.test.d.mts +0 -2
  214. package/dist/create_config.test.js +0 -63
  215. package/dist/create_config.test.mjs +0 -63
  216. package/dist/create_generator_fn.d.mts +0 -12
  217. package/dist/create_generator_fn.test.d.mts +0 -2
  218. package/dist/create_generator_fn.test.js +0 -191
  219. package/dist/create_generator_fn.test.mjs +0 -191
  220. package/dist/database-DV9wgnca.d.ts +0 -23
  221. package/dist/database-UzO1Lwec.d.mts +0 -23
  222. package/dist/datatype-C92TZLxo.d.ts +0 -13
  223. package/dist/datatype-DZjmP0fA.d.mts +0 -13
  224. package/dist/datetime-CSUpnUXU.d.ts +0 -78
  225. package/dist/datetime-dnPA_lnt.d.mts +0 -78
  226. package/dist/finance-CstKW1nH.d.mts +0 -90
  227. package/dist/finance-gj0fiEmf.d.ts +0 -90
  228. package/dist/food-CInj1GX2.d.ts +0 -35
  229. package/dist/food-Dk3-40CY.d.mts +0 -35
  230. package/dist/generator_fn-CJDbnCZl.d.mts +0 -7
  231. package/dist/generator_fn-D-npAfnC.d.ts +0 -7
  232. package/dist/generator_fn.d.mts +0 -2
  233. package/dist/git-BHL1ppL4.d.ts +0 -31
  234. package/dist/git-w0nznSjX.d.mts +0 -31
  235. package/dist/hacker-DL7pR6JO.d.ts +0 -26
  236. package/dist/hacker-FcQXZGtz.d.mts +0 -26
  237. package/dist/image-B5OPCNhD.d.mts +0 -56
  238. package/dist/image-IyGCgqNf.d.ts +0 -56
  239. package/dist/index.d.mts +0 -5
  240. package/dist/internet-BukCBMX-.d.ts +0 -106
  241. package/dist/internet-C2ElurWb.d.mts +0 -106
  242. package/dist/location-BIZ-KsaI.d.ts +0 -80
  243. package/dist/location-WU_nRdjx.d.mts +0 -80
  244. package/dist/lorem-OlHaVntu.d.mts +0 -62
  245. package/dist/lorem-yMyLb-d-.d.ts +0 -62
  246. package/dist/magic-string.es-2DLPM6Q3.js +0 -1299
  247. package/dist/magic-string.es-NHTKQXSF.mjs +0 -1299
  248. package/dist/music-P8XZ4JSO.d.ts +0 -20
  249. package/dist/music-vcWm9dzu.d.mts +0 -20
  250. package/dist/number-BfwwKvTJ.d.mts +0 -48
  251. package/dist/number-D5QmTRsK.d.ts +0 -48
  252. package/dist/person-DXne2mKX.d.ts +0 -58
  253. package/dist/person-Si_vy67g.d.mts +0 -58
  254. package/dist/phone-Cbxvm_Qv.d.ts +0 -16
  255. package/dist/phone-g4FDs50M.d.mts +0 -16
  256. package/dist/science-BX8WhoEY.d.ts +0 -15
  257. package/dist/science-BfA9sVXz.d.mts +0 -15
  258. package/dist/string-DGScZrrP.d.mts +0 -87
  259. package/dist/string-Do4vhsl0.d.ts +0 -87
  260. package/dist/system-BpxbduIr.d.ts +0 -55
  261. package/dist/system-Cy0e05Cr.d.mts +0 -55
  262. package/dist/test.d.mts +0 -2
  263. package/dist/test.d.ts +0 -2
  264. package/dist/test.js +0 -15
  265. package/dist/test.mjs +0 -15
  266. package/dist/type.d.mts +0 -93
  267. package/dist/utils/airline.d.mts +0 -3
  268. package/dist/utils/animal.d.mts +0 -2
  269. package/dist/utils/color.d.mts +0 -3
  270. package/dist/utils/commerce.d.mts +0 -2
  271. package/dist/utils/common.d.mts +0 -2
  272. package/dist/utils/company.d.mts +0 -2
  273. package/dist/utils/database.d.mts +0 -2
  274. package/dist/utils/datatype.d.mts +0 -2
  275. package/dist/utils/datetime.d.mts +0 -2
  276. package/dist/utils/finance.d.mts +0 -3
  277. package/dist/utils/food.d.mts +0 -2
  278. package/dist/utils/git.d.mts +0 -2
  279. package/dist/utils/hacker.d.mts +0 -2
  280. package/dist/utils/image.d.mts +0 -2
  281. package/dist/utils/index.d.mts +0 -28
  282. package/dist/utils/internet.d.mts +0 -3
  283. package/dist/utils/location.d.mts +0 -2
  284. package/dist/utils/lorem.d.mts +0 -2
  285. package/dist/utils/music.d.mts +0 -2
  286. package/dist/utils/number.d.mts +0 -2
  287. package/dist/utils/person.d.mts +0 -3
  288. package/dist/utils/phone.d.mts +0 -2
  289. package/dist/utils/science.d.mts +0 -3
  290. package/dist/utils/string.d.mts +0 -2
  291. package/dist/utils/system.d.mts +0 -2
  292. package/dist/utils/utils.d.mts +0 -2
  293. package/dist/utils/vehicle.d.mts +0 -2
  294. package/dist/utils/word.d.mts +0 -75
  295. package/dist/utils-BImnOpvp.d.ts +0 -10
  296. package/dist/utils-zJKwaMUY.d.mts +0 -10
  297. package/dist/vehicle-D4yBDYMc.d.mts +0 -35
  298. package/dist/vehicle-Ufz4AoXu.d.ts +0 -35
  299. package/src/test.ts +0 -10
  300. package/tsup.config.ts +0 -8
@@ -1,2 +1,30 @@
1
- import '../type.js';
2
- export { b as bear, c as bird, d as cat, e as cetacean, f as cow, g as crocodilia, h as dog, i as fish, j as horse, k as insect, l as lion, r as rabbit, m as rodent, s as snake, t as type } from '../animal-o8BFF7gd.js';
1
+ /** Animal [bear](https://fakerjs.dev/api/animal.html#bear) */
2
+ export declare const bear: () => import("..").ValueConfig<string>;
3
+ /** Animal [bird](https://fakerjs.dev/api/animal.html#bird) */
4
+ export declare const bird: () => import("..").ValueConfig<string>;
5
+ /** Animal [cat](https://fakerjs.dev/api/animal.html#cat) */
6
+ export declare const cat: () => import("..").ValueConfig<string>;
7
+ /** Animal [cetacean](https://fakerjs.dev/api/animal.html#cetacean) */
8
+ export declare const cetacean: () => import("..").ValueConfig<string>;
9
+ /** Animal [cow](https://fakerjs.dev/api/animal.html#cow) */
10
+ export declare const cow: () => import("..").ValueConfig<string>;
11
+ /** Animal [crocodilia](https://fakerjs.dev/api/animal.html#crocodilia) */
12
+ export declare const crocodilia: () => import("..").ValueConfig<string>;
13
+ /** Animal [dog](https://fakerjs.dev/api/animal.html#dog) */
14
+ export declare const dog: () => import("..").ValueConfig<string>;
15
+ /** Animal [fish](https://fakerjs.dev/api/animal.html#fish) */
16
+ export declare const fish: () => import("..").ValueConfig<string>;
17
+ /** Animal [horse](https://fakerjs.dev/api/animal.html#horse) */
18
+ export declare const horse: () => import("..").ValueConfig<string>;
19
+ /** Animal [insect](https://fakerjs.dev/api/animal.html#insect) */
20
+ export declare const insect: () => import("..").ValueConfig<string>;
21
+ /** Animal [lion](https://fakerjs.dev/api/animal.html#lion) */
22
+ export declare const lion: () => import("..").ValueConfig<string>;
23
+ /** Animal [rabbit](https://fakerjs.dev/api/animal.html#rabbit) */
24
+ export declare const rabbit: () => import("..").ValueConfig<string>;
25
+ /** Animal [rodent](https://fakerjs.dev/api/animal.html#rodent) */
26
+ export declare const rodent: () => import("..").ValueConfig<string>;
27
+ /** Animal [snake](https://fakerjs.dev/api/animal.html#snake) */
28
+ export declare const snake: () => import("..").ValueConfig<string>;
29
+ /** Animal [type](https://fakerjs.dev/api/animal.html#type) */
30
+ export declare const type: () => import("..").ValueConfig<string>;
@@ -1,39 +1,94 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
- var _chunk5KF6D2RTjs = require('../chunk-5KF6D2RT.js');
18
- require('../chunk-IOXGSFEU.js');
19
- require('../chunk-C3RGM3CB.js');
20
- require('../chunk-TZ2RKEBF.js');
21
- require('../chunk-ZWLHVT5O.js');
22
- require('../chunk-4VNS5WPM.js');
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
- exports.bear = _chunk5KF6D2RTjs.bear; exports.bird = _chunk5KF6D2RTjs.bird; exports.cat = _chunk5KF6D2RTjs.cat; exports.cetacean = _chunk5KF6D2RTjs.cetacean; exports.cow = _chunk5KF6D2RTjs.cow; exports.crocodilia = _chunk5KF6D2RTjs.crocodilia; exports.dog = _chunk5KF6D2RTjs.dog; exports.fish = _chunk5KF6D2RTjs.fish; exports.horse = _chunk5KF6D2RTjs.horse; exports.insect = _chunk5KF6D2RTjs.insect; exports.lion = _chunk5KF6D2RTjs.lion; exports.rabbit = _chunk5KF6D2RTjs.rabbit; exports.rodent = _chunk5KF6D2RTjs.rodent; exports.snake = _chunk5KF6D2RTjs.snake; exports.type = _chunk5KF6D2RTjs.type;
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ dog: ()=>dog,
28
+ cow: ()=>cow,
29
+ cetacean: ()=>cetacean,
30
+ lion: ()=>lion,
31
+ bird: ()=>bird,
32
+ insect: ()=>insect,
33
+ rodent: ()=>rodent,
34
+ bear: ()=>bear,
35
+ type: ()=>type,
36
+ fish: ()=>fish,
37
+ snake: ()=>snake,
38
+ rabbit: ()=>rabbit,
39
+ crocodilia: ()=>crocodilia,
40
+ cat: ()=>cat,
41
+ horse: ()=>horse
42
+ });
43
+ const faker_namespaceObject = require("@faker-js/faker");
44
+ const external_utils_js_namespaceObject = require("./utils.js");
45
+ const bear = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.bear);
46
+ const bird = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.bird);
47
+ const cat = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.cat);
48
+ const cetacean = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.cetacean);
49
+ const cow = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.cow);
50
+ const crocodilia = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.crocodilia);
51
+ const dog = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.dog);
52
+ const fish = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.fish);
53
+ const horse = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.horse);
54
+ const insect = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.insect);
55
+ const lion = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.lion);
56
+ const rabbit = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.rabbit);
57
+ const rodent = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.rodent);
58
+ const snake = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.snake);
59
+ const type = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.animal.type);
60
+ exports.bear = __webpack_exports__.bear;
61
+ exports.bird = __webpack_exports__.bird;
62
+ exports.cat = __webpack_exports__.cat;
63
+ exports.cetacean = __webpack_exports__.cetacean;
64
+ exports.cow = __webpack_exports__.cow;
65
+ exports.crocodilia = __webpack_exports__.crocodilia;
66
+ exports.dog = __webpack_exports__.dog;
67
+ exports.fish = __webpack_exports__.fish;
68
+ exports.horse = __webpack_exports__.horse;
69
+ exports.insect = __webpack_exports__.insect;
70
+ exports.lion = __webpack_exports__.lion;
71
+ exports.rabbit = __webpack_exports__.rabbit;
72
+ exports.rodent = __webpack_exports__.rodent;
73
+ exports.snake = __webpack_exports__.snake;
74
+ exports.type = __webpack_exports__.type;
75
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
76
+ "bear",
77
+ "bird",
78
+ "cat",
79
+ "cetacean",
80
+ "cow",
81
+ "crocodilia",
82
+ "dog",
83
+ "fish",
84
+ "horse",
85
+ "insect",
86
+ "lion",
87
+ "rabbit",
88
+ "rodent",
89
+ "snake",
90
+ "type"
91
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
92
+ Object.defineProperty(exports, '__esModule', {
93
+ value: true
94
+ });
@@ -1,39 +1,18 @@
1
- import {
2
- bear,
3
- bird,
4
- cat,
5
- cetacean,
6
- cow,
7
- crocodilia,
8
- dog,
9
- fish,
10
- horse,
11
- insect,
12
- lion,
13
- rabbit,
14
- rodent,
15
- snake,
16
- type
17
- } from "../chunk-JB6NCVX3.mjs";
18
- import "../chunk-3KXIZTCT.mjs";
19
- import "../chunk-ZQA42PYM.mjs";
20
- import "../chunk-3U6BNHWG.mjs";
21
- import "../chunk-USLYTOPD.mjs";
22
- import "../chunk-XGB3TDIC.mjs";
23
- export {
24
- bear,
25
- bird,
26
- cat,
27
- cetacean,
28
- cow,
29
- crocodilia,
30
- dog,
31
- fish,
32
- horse,
33
- insect,
34
- lion,
35
- rabbit,
36
- rodent,
37
- snake,
38
- type
39
- };
1
+ import { faker } from "@faker-js/faker";
2
+ import { makeValueConfigFn } from "./utils.mjs";
3
+ const bear = makeValueConfigFn(faker.animal.bear);
4
+ const bird = makeValueConfigFn(faker.animal.bird);
5
+ const cat = makeValueConfigFn(faker.animal.cat);
6
+ const cetacean = makeValueConfigFn(faker.animal.cetacean);
7
+ const cow = makeValueConfigFn(faker.animal.cow);
8
+ const crocodilia = makeValueConfigFn(faker.animal.crocodilia);
9
+ const dog = makeValueConfigFn(faker.animal.dog);
10
+ const fish = makeValueConfigFn(faker.animal.fish);
11
+ const horse = makeValueConfigFn(faker.animal.horse);
12
+ const insect = makeValueConfigFn(faker.animal.insect);
13
+ const lion = makeValueConfigFn(faker.animal.lion);
14
+ const rabbit = makeValueConfigFn(faker.animal.rabbit);
15
+ const rodent = makeValueConfigFn(faker.animal.rodent);
16
+ const snake = makeValueConfigFn(faker.animal.snake);
17
+ const type = makeValueConfigFn(faker.animal.type);
18
+ export { bear, bird, cat, cetacean, cow, crocodilia, dog, fish, horse, insect, lion, rabbit, rodent, snake, type };
@@ -1,3 +1,41 @@
1
- import '../type.js';
2
- import '@faker-js/faker/.';
3
- export { a as cmyk, b as colorByCSSColorSpace, d as cssSupportedFunction, e as cssSupportedSpace, h as hsl, f as human, g as hwb, l as lab, i as lch, r as rgb, s as space } from '../color-lBH29suB.js';
1
+ /** Color [cmyk](https://fakerjs.dev/api/color.html#cmyk) */
2
+ export declare const cmyk: (options?: {
3
+ format?: import("@faker-js/faker/.").ColorFormat;
4
+ }) => import("..").ValueConfig<string | number[]>;
5
+ /** Color [colorByCSSColorSpace](https://fakerjs.dev/api/color.html#colorByCSSColorSpace) */
6
+ export declare const colorByCSSColorSpace: (options?: {
7
+ format?: import("@faker-js/faker/.").ColorFormat;
8
+ space?: import("@faker-js/faker/.").CssSpaceType;
9
+ }) => import("..").ValueConfig<string | number[]>;
10
+ /** Color [cssSupportedFunction](https://fakerjs.dev/api/color.html#cssSupportedFunction) */
11
+ export declare const cssSupportedFunction: () => import("..").ValueConfig<"rgb" | "rgba" | "hsl" | "hsla" | "hwb" | "cmyk" | "lab" | "lch" | "color">;
12
+ /** Color [cssSupportedSpace](https://fakerjs.dev/api/color.html#cssSupportedSpace) */
13
+ export declare const cssSupportedSpace: () => import("..").ValueConfig<"sRGB" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb">;
14
+ /** Color [hsl](https://fakerjs.dev/api/color.html#hsl) */
15
+ export declare const hsl: (options?: {
16
+ format?: import("@faker-js/faker/.").ColorFormat;
17
+ includeAlpha?: boolean;
18
+ }) => import("..").ValueConfig<string | number[]>;
19
+ /** Color [human](https://fakerjs.dev/api/color.html#human) */
20
+ export declare const human: () => import("..").ValueConfig<string>;
21
+ /** Color [hwb](https://fakerjs.dev/api/color.html#hwb) */
22
+ export declare const hwb: (options?: {
23
+ format?: import("@faker-js/faker/.").ColorFormat;
24
+ }) => import("..").ValueConfig<string | number[]>;
25
+ /** Color [lab](https://fakerjs.dev/api/color.html#lab) */
26
+ export declare const lab: (options?: {
27
+ format?: import("@faker-js/faker/.").ColorFormat;
28
+ }) => import("..").ValueConfig<string | number[]>;
29
+ /** Color [lch](https://fakerjs.dev/api/color.html#lch) */
30
+ export declare const lch: (options?: {
31
+ format?: import("@faker-js/faker/.").ColorFormat;
32
+ }) => import("..").ValueConfig<string | number[]>;
33
+ /** Color [rgb](https://fakerjs.dev/api/color.html#rgb) */
34
+ export declare const rgb: (options?: {
35
+ prefix?: string;
36
+ casing?: import("@faker-js/faker/.").Casing;
37
+ format?: "hex" | import("@faker-js/faker/.").ColorFormat;
38
+ includeAlpha?: boolean;
39
+ }) => import("..").ValueConfig<string | number[]>;
40
+ /** Color [space](https://fakerjs.dev/api/color.html#space) */
41
+ export declare const space: () => import("..").ValueConfig<string>;
@@ -1,31 +1,78 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
- var _chunk23I6D5SJjs = require('../chunk-23I6D5SJ.js');
14
- require('../chunk-IOXGSFEU.js');
15
- require('../chunk-C3RGM3CB.js');
16
- require('../chunk-TZ2RKEBF.js');
17
- require('../chunk-ZWLHVT5O.js');
18
- require('../chunk-4VNS5WPM.js');
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
- exports.cmyk = _chunk23I6D5SJjs.cmyk; exports.colorByCSSColorSpace = _chunk23I6D5SJjs.colorByCSSColorSpace; exports.cssSupportedFunction = _chunk23I6D5SJjs.cssSupportedFunction; exports.cssSupportedSpace = _chunk23I6D5SJjs.cssSupportedSpace; exports.hsl = _chunk23I6D5SJjs.hsl; exports.human = _chunk23I6D5SJjs.human; exports.hwb = _chunk23I6D5SJjs.hwb; exports.lab = _chunk23I6D5SJjs.lab; exports.lch = _chunk23I6D5SJjs.lch; exports.rgb = _chunk23I6D5SJjs.rgb; exports.space = _chunk23I6D5SJjs.space;
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ colorByCSSColorSpace: ()=>colorByCSSColorSpace,
28
+ cssSupportedFunction: ()=>cssSupportedFunction,
29
+ space: ()=>space,
30
+ cmyk: ()=>cmyk,
31
+ human: ()=>human,
32
+ cssSupportedSpace: ()=>cssSupportedSpace,
33
+ rgb: ()=>rgb,
34
+ hwb: ()=>hwb,
35
+ lab: ()=>lab,
36
+ hsl: ()=>hsl,
37
+ lch: ()=>lch
38
+ });
39
+ const faker_namespaceObject = require("@faker-js/faker");
40
+ const external_utils_js_namespaceObject = require("./utils.js");
41
+ const cmyk = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.cmyk);
42
+ const colorByCSSColorSpace = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.colorByCSSColorSpace);
43
+ const cssSupportedFunction = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.cssSupportedFunction);
44
+ const cssSupportedSpace = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.cssSupportedSpace);
45
+ const hsl = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.hsl);
46
+ const human = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.human);
47
+ const hwb = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.hwb);
48
+ const lab = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.lab);
49
+ const lch = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.lch);
50
+ const rgb = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.rgb);
51
+ const space = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.color.space);
52
+ exports.cmyk = __webpack_exports__.cmyk;
53
+ exports.colorByCSSColorSpace = __webpack_exports__.colorByCSSColorSpace;
54
+ exports.cssSupportedFunction = __webpack_exports__.cssSupportedFunction;
55
+ exports.cssSupportedSpace = __webpack_exports__.cssSupportedSpace;
56
+ exports.hsl = __webpack_exports__.hsl;
57
+ exports.human = __webpack_exports__.human;
58
+ exports.hwb = __webpack_exports__.hwb;
59
+ exports.lab = __webpack_exports__.lab;
60
+ exports.lch = __webpack_exports__.lch;
61
+ exports.rgb = __webpack_exports__.rgb;
62
+ exports.space = __webpack_exports__.space;
63
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
64
+ "cmyk",
65
+ "colorByCSSColorSpace",
66
+ "cssSupportedFunction",
67
+ "cssSupportedSpace",
68
+ "hsl",
69
+ "human",
70
+ "hwb",
71
+ "lab",
72
+ "lch",
73
+ "rgb",
74
+ "space"
75
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
76
+ Object.defineProperty(exports, '__esModule', {
77
+ value: true
78
+ });
@@ -1,31 +1,14 @@
1
- import {
2
- cmyk,
3
- colorByCSSColorSpace,
4
- cssSupportedFunction,
5
- cssSupportedSpace,
6
- hsl,
7
- human,
8
- hwb,
9
- lab,
10
- lch,
11
- rgb,
12
- space
13
- } from "../chunk-4DDCMYY5.mjs";
14
- import "../chunk-3KXIZTCT.mjs";
15
- import "../chunk-ZQA42PYM.mjs";
16
- import "../chunk-3U6BNHWG.mjs";
17
- import "../chunk-USLYTOPD.mjs";
18
- import "../chunk-XGB3TDIC.mjs";
19
- export {
20
- cmyk,
21
- colorByCSSColorSpace,
22
- cssSupportedFunction,
23
- cssSupportedSpace,
24
- hsl,
25
- human,
26
- hwb,
27
- lab,
28
- lch,
29
- rgb,
30
- space
31
- };
1
+ import { faker } from "@faker-js/faker";
2
+ import { makeValueConfigFn } from "./utils.mjs";
3
+ const cmyk = makeValueConfigFn(faker.color.cmyk);
4
+ const colorByCSSColorSpace = makeValueConfigFn(faker.color.colorByCSSColorSpace);
5
+ const cssSupportedFunction = makeValueConfigFn(faker.color.cssSupportedFunction);
6
+ const cssSupportedSpace = makeValueConfigFn(faker.color.cssSupportedSpace);
7
+ const hsl = makeValueConfigFn(faker.color.hsl);
8
+ const human = makeValueConfigFn(faker.color.human);
9
+ const hwb = makeValueConfigFn(faker.color.hwb);
10
+ const lab = makeValueConfigFn(faker.color.lab);
11
+ const lch = makeValueConfigFn(faker.color.lch);
12
+ const rgb = makeValueConfigFn(faker.color.rgb);
13
+ const space = makeValueConfigFn(faker.color.space);
14
+ export { cmyk, colorByCSSColorSpace, cssSupportedFunction, cssSupportedSpace, hsl, human, hwb, lab, lch, rgb, space };
@@ -1,2 +1,24 @@
1
- import '../type.js';
2
- export { d as department, i as isbn, p as price, a as product, b as productAdjective, e as productDescription, f as productMaterial, g as productName } from '../commerce-mdOpchjx.js';
1
+ /** Commerce [department](https://fakerjs.dev/api/commerce.html#department) */
2
+ export declare const department: () => import("..").ValueConfig<string>;
3
+ /** Commerce [isbn](https://fakerjs.dev/api/commerce.html#isbn) */
4
+ export declare const isbn: (options?: 10 | 13 | {
5
+ variant?: 10 | 13;
6
+ separator?: string;
7
+ }) => import("..").ValueConfig<string>;
8
+ /** Commerce [price](https://fakerjs.dev/api/commerce.html#price) */
9
+ export declare const price: (options?: {
10
+ min?: number;
11
+ max?: number;
12
+ dec?: number;
13
+ symbol?: string;
14
+ }) => import("..").ValueConfig<string>;
15
+ /** Commerce [product](https://fakerjs.dev/api/commerce.html#product) */
16
+ export declare const product: () => import("..").ValueConfig<string>;
17
+ /** Commerce [productAdjective](https://fakerjs.dev/api/commerce.html#productAdjective) */
18
+ export declare const productAdjective: () => import("..").ValueConfig<string>;
19
+ /** Commerce [productDescription](https://fakerjs.dev/api/commerce.html#productDescription) */
20
+ export declare const productDescription: () => import("..").ValueConfig<string>;
21
+ /** Commerce [productMaterial](https://fakerjs.dev/api/commerce.html#productMaterial) */
22
+ export declare const productMaterial: () => import("..").ValueConfig<string>;
23
+ /** Commerce [productName](https://fakerjs.dev/api/commerce.html#productName) */
24
+ export declare const productName: () => import("..").ValueConfig<string>;
@@ -1,25 +1,66 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
- var _chunkVMSMHNPYjs = require('../chunk-VMSMHNPY.js');
11
- require('../chunk-IOXGSFEU.js');
12
- require('../chunk-C3RGM3CB.js');
13
- require('../chunk-TZ2RKEBF.js');
14
- require('../chunk-ZWLHVT5O.js');
15
- require('../chunk-4VNS5WPM.js');
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
- exports.department = _chunkVMSMHNPYjs.department; exports.isbn = _chunkVMSMHNPYjs.isbn; exports.price = _chunkVMSMHNPYjs.price; exports.product = _chunkVMSMHNPYjs.product; exports.productAdjective = _chunkVMSMHNPYjs.productAdjective; exports.productDescription = _chunkVMSMHNPYjs.productDescription; exports.productMaterial = _chunkVMSMHNPYjs.productMaterial; exports.productName = _chunkVMSMHNPYjs.productName;
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ price: ()=>price,
28
+ isbn: ()=>isbn,
29
+ productDescription: ()=>productDescription,
30
+ productMaterial: ()=>productMaterial,
31
+ department: ()=>department,
32
+ product: ()=>product,
33
+ productAdjective: ()=>productAdjective,
34
+ productName: ()=>productName
35
+ });
36
+ const faker_namespaceObject = require("@faker-js/faker");
37
+ const external_utils_js_namespaceObject = require("./utils.js");
38
+ const department = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.department);
39
+ const isbn = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.isbn);
40
+ const price = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.price);
41
+ const product = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.product);
42
+ const productAdjective = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.productAdjective);
43
+ const productDescription = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.productDescription);
44
+ const productMaterial = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.productMaterial);
45
+ const productName = (0, external_utils_js_namespaceObject.makeValueConfigFn)(faker_namespaceObject.faker.commerce.productName);
46
+ exports.department = __webpack_exports__.department;
47
+ exports.isbn = __webpack_exports__.isbn;
48
+ exports.price = __webpack_exports__.price;
49
+ exports.product = __webpack_exports__.product;
50
+ exports.productAdjective = __webpack_exports__.productAdjective;
51
+ exports.productDescription = __webpack_exports__.productDescription;
52
+ exports.productMaterial = __webpack_exports__.productMaterial;
53
+ exports.productName = __webpack_exports__.productName;
54
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
55
+ "department",
56
+ "isbn",
57
+ "price",
58
+ "product",
59
+ "productAdjective",
60
+ "productDescription",
61
+ "productMaterial",
62
+ "productName"
63
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
64
+ Object.defineProperty(exports, '__esModule', {
65
+ value: true
66
+ });
@@ -1,25 +1,11 @@
1
- import {
2
- department,
3
- isbn,
4
- price,
5
- product,
6
- productAdjective,
7
- productDescription,
8
- productMaterial,
9
- productName
10
- } from "../chunk-SD3HVRQN.mjs";
11
- import "../chunk-3KXIZTCT.mjs";
12
- import "../chunk-ZQA42PYM.mjs";
13
- import "../chunk-3U6BNHWG.mjs";
14
- import "../chunk-USLYTOPD.mjs";
15
- import "../chunk-XGB3TDIC.mjs";
16
- export {
17
- department,
18
- isbn,
19
- price,
20
- product,
21
- productAdjective,
22
- productDescription,
23
- productMaterial,
24
- productName
25
- };
1
+ import { faker } from "@faker-js/faker";
2
+ import { makeValueConfigFn } from "./utils.mjs";
3
+ const department = makeValueConfigFn(faker.commerce.department);
4
+ const isbn = makeValueConfigFn(faker.commerce.isbn);
5
+ const price = makeValueConfigFn(faker.commerce.price);
6
+ const product = makeValueConfigFn(faker.commerce.product);
7
+ const productAdjective = makeValueConfigFn(faker.commerce.productAdjective);
8
+ const productDescription = makeValueConfigFn(faker.commerce.productDescription);
9
+ const productMaterial = makeValueConfigFn(faker.commerce.productMaterial);
10
+ const productName = makeValueConfigFn(faker.commerce.productName);
11
+ export { department, isbn, price, product, productAdjective, productDescription, productMaterial, productName };
@@ -1,2 +1,2 @@
1
- import '../type.js';
2
- export { a as constant } from '../common-t-ZQebCq.js';
1
+ /** Common constant */
2
+ export declare const constant: <T>(value: T) => import("..").ValueConfig<T>;
@@ -1,9 +1,37 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
- var _chunkLSFOERXQjs = require('../chunk-LSFOERXQ.js');
4
- require('../chunk-C3RGM3CB.js');
5
- require('../chunk-ZWLHVT5O.js');
6
- require('../chunk-4VNS5WPM.js');
7
-
8
-
9
- exports.constant = _chunkLSFOERXQjs.constant;
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ constant: ()=>constant
28
+ });
29
+ const external_create_config_js_namespaceObject = require("../create_config.js");
30
+ const constant = (value)=>(0, external_create_config_js_namespaceObject.createValueConfig)(()=>value);
31
+ exports.constant = __webpack_exports__.constant;
32
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
33
+ "constant"
34
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
35
+ Object.defineProperty(exports, '__esModule', {
36
+ value: true
37
+ });
@@ -1,9 +1,3 @@
1
- import {
2
- constant
3
- } from "../chunk-EM67LVYX.mjs";
4
- import "../chunk-ZQA42PYM.mjs";
5
- import "../chunk-USLYTOPD.mjs";
6
- import "../chunk-XGB3TDIC.mjs";
7
- export {
8
- constant
9
- };
1
+ import { createValueConfig } from "../create_config.mjs";
2
+ const constant = (value)=>createValueConfig(()=>value);
3
+ export { constant };