struct-fakerator 2.7.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.
- package/README.md +8 -8
- package/biome.json +30 -26
- package/dist/config.d.ts +1 -2
- package/dist/config.js +51 -19
- package/dist/config.mjs +2 -19
- package/dist/config_scheme.d.ts +7 -10
- package/dist/config_scheme.js +95 -17
- package/dist/config_scheme.mjs +46 -17
- package/dist/create_config.d.ts +9 -11
- package/dist/create_config.js +110 -18
- package/dist/create_config.mjs +60 -17
- package/dist/create_config.test.d.ts +1 -2
- package/dist/create_generator_fn.d.ts +9 -11
- package/dist/create_generator_fn.js +168 -20
- package/dist/create_generator_fn.mjs +115 -19
- package/dist/create_generator_fn.test.d.ts +1 -2
- package/dist/generator_fn.d.ts +1 -2
- package/dist/generator_fn.js +54 -21
- package/dist/generator_fn.mjs +2 -21
- package/dist/index.d.ts +5 -5
- package/dist/index.js +107 -43
- package/dist/index.mjs +6 -43
- package/dist/type.d.ts +9 -11
- package/dist/type.js +18 -1
- package/dist/type.mjs +0 -1
- package/dist/utils/airline.d.ts +14 -3
- package/dist/utils/airline.js +46 -14
- package/dist/utils/airline.mjs +6 -14
- package/dist/utils/animal.d.ts +30 -2
- package/dist/utils/animal.js +94 -38
- package/dist/utils/animal.mjs +18 -38
- package/dist/utils/color.d.ts +41 -3
- package/dist/utils/color.js +78 -30
- package/dist/utils/color.mjs +14 -30
- package/dist/utils/commerce.d.ts +24 -2
- package/dist/utils/commerce.js +66 -24
- package/dist/utils/commerce.mjs +11 -24
- package/dist/utils/common.d.ts +2 -2
- package/dist/utils/common.js +37 -9
- package/dist/utils/common.mjs +3 -9
- package/dist/utils/company.d.ts +18 -2
- package/dist/utils/company.js +70 -26
- package/dist/utils/company.mjs +12 -26
- package/dist/utils/database.d.ts +10 -2
- package/dist/utils/database.js +54 -18
- package/dist/utils/database.mjs +8 -18
- package/dist/utils/datatype.d.ts +4 -2
- package/dist/utils/datatype.js +38 -10
- package/dist/utils/datatype.mjs +4 -10
- package/dist/utils/datetime.d.ts +59 -2
- package/dist/utils/datetime.js +78 -30
- package/dist/utils/datetime.mjs +14 -30
- package/dist/utils/finance.d.ts +62 -3
- package/dist/utils/finance.js +110 -46
- package/dist/utils/finance.mjs +22 -46
- package/dist/utils/food.d.ts +18 -2
- package/dist/utils/food.js +70 -26
- package/dist/utils/food.mjs +12 -26
- package/dist/utils/git.d.ts +18 -2
- package/dist/utils/git.js +54 -18
- package/dist/utils/git.mjs +8 -18
- package/dist/utils/hacker.d.ts +12 -2
- package/dist/utils/hacker.js +58 -20
- package/dist/utils/hacker.mjs +9 -20
- package/dist/utils/image.d.ts +40 -2
- package/dist/utils/image.js +66 -24
- package/dist/utils/image.mjs +11 -24
- package/dist/utils/index.d.ts +26 -28
- package/dist/utils/index.js +136 -109
- package/dist/utils/index.mjs +27 -109
- package/dist/utils/internet.d.ts +77 -3
- package/dist/utils/internet.js +114 -48
- package/dist/utils/internet.mjs +23 -48
- package/dist/utils/location.d.ts +56 -2
- package/dist/utils/location.js +98 -40
- package/dist/utils/location.mjs +19 -40
- package/dist/utils/lorem.d.ts +45 -2
- package/dist/utils/lorem.js +70 -26
- package/dist/utils/lorem.mjs +12 -26
- package/dist/utils/music.d.ts +8 -2
- package/dist/utils/music.js +50 -16
- package/dist/utils/music.mjs +7 -16
- package/dist/utils/number.d.ts +34 -2
- package/dist/utils/number.js +58 -20
- package/dist/utils/number.mjs +9 -20
- package/dist/utils/person.d.ts +34 -3
- package/dist/utils/person.js +94 -38
- package/dist/utils/person.mjs +18 -38
- package/dist/utils/phone.d.ts +6 -2
- package/dist/utils/phone.js +42 -12
- package/dist/utils/phone.mjs +5 -12
- package/dist/utils/science.d.ts +4 -3
- package/dist/utils/science.js +42 -12
- package/dist/utils/science.mjs +5 -12
- package/dist/utils/string.d.ts +69 -2
- package/dist/utils/string.js +74 -28
- package/dist/utils/string.mjs +13 -28
- package/dist/utils/system.d.ts +35 -2
- package/dist/utils/system.js +82 -32
- package/dist/utils/system.mjs +15 -32
- package/dist/utils/utils.d.ts +2 -2
- package/dist/utils/utils.js +39 -9
- package/dist/utils/utils.mjs +5 -9
- package/dist/utils/vehicle.d.ts +18 -2
- package/dist/utils/vehicle.js +70 -26
- package/dist/utils/vehicle.mjs +12 -26
- package/dist/utils/word.d.ts +18 -22
- package/dist/utils/word.js +70 -29
- package/dist/utils/word.mjs +11 -28
- package/package.json +9 -6
- package/pnpm-workspace.yaml +2 -0
- package/rslib.config.ts +26 -0
- package/src/config.ts +3 -3
- package/src/config_scheme.ts +1 -1
- package/src/create_config.test.ts +0 -1
- package/src/create_generator_fn.test.ts +2 -2
- package/src/create_generator_fn.ts +0 -1
- package/src/generator_fn.ts +1 -1
- package/src/index.ts +2 -2
- package/src/utils/index.ts +1 -2
- package/src/utils/utils.ts +1 -1
- package/tsconfig.json +2 -1
- package/dist/airline-98MCzMN8.d.ts +0 -26
- package/dist/airline-BUwgrfsj.d.ts +0 -26
- package/dist/airline-C0ManYED.d.mts +0 -26
- package/dist/airline-CuAxOEYH.d.mts +0 -26
- package/dist/animal-BohQ7s0w.d.mts +0 -53
- package/dist/animal-arG64NM6.d.mts +0 -53
- package/dist/animal-erAZXs_d.d.ts +0 -53
- package/dist/animal-o8BFF7gd.d.ts +0 -53
- package/dist/chunk-25HDDMTE.js +0 -45
- package/dist/chunk-266JLHQ7.mjs +0 -27
- package/dist/chunk-266W7TLD.mjs +0 -45
- package/dist/chunk-2FTPTSHD.mjs +0 -1972
- package/dist/chunk-2HHTDZ5W.mjs +0 -27
- package/dist/chunk-2P6DPKAW.js +0 -35
- package/dist/chunk-2QPSWN3J.js +0 -24
- package/dist/chunk-2SF54GZN.mjs +0 -24
- package/dist/chunk-2UAN3WRZ.js +0 -51
- package/dist/chunk-2VTSGFBK.mjs +0 -56
- package/dist/chunk-2ZR6AR26.js +0 -24
- package/dist/chunk-3APOILUV.js +0 -81
- package/dist/chunk-3AXS7RA6.mjs +0 -18
- package/dist/chunk-3DIP4M5Y.mjs +0 -36
- package/dist/chunk-3E2B272L.js +0 -25
- package/dist/chunk-3FFGDXA5.mjs +0 -48
- package/dist/chunk-3HQMGDUF.js +0 -98
- package/dist/chunk-3KXIZTCT.mjs +0 -20
- package/dist/chunk-3MYH2PDS.js +0 -24
- package/dist/chunk-3P4RJMMV.js +0 -79
- package/dist/chunk-3PSJD6BF.js +0 -67
- package/dist/chunk-3SVV5GDL.js +0 -22
- package/dist/chunk-3U6BNHWG.mjs +0 -2040
- package/dist/chunk-3WINWLTB.js +0 -34
- package/dist/chunk-42EKB2FX.js +0 -74
- package/dist/chunk-44Q7WXPL.mjs +0 -30
- package/dist/chunk-474WFN7X.js +0 -33
- package/dist/chunk-4ESFUYHU.js +0 -48
- package/dist/chunk-4OB35J4Q.mjs +0 -151
- package/dist/chunk-4UGSTE5Q.js +0 -1968
- package/dist/chunk-4VNS5WPM.js +0 -42
- package/dist/chunk-4XEKUGKR.js +0 -35
- package/dist/chunk-4XQBQAPC.mjs +0 -33
- package/dist/chunk-52ZOIHJM.js +0 -26
- package/dist/chunk-55HSOHNN.js +0 -36
- package/dist/chunk-5A3HJWPX.mjs +0 -33
- package/dist/chunk-5KKLW4SD.js +0 -26
- package/dist/chunk-5LCWZUVP.mjs +0 -19
- package/dist/chunk-5M3DUBFV.mjs +0 -24
- package/dist/chunk-5NC3JFHS.mjs +0 -63
- package/dist/chunk-5PCIFPK7.js +0 -15721
- package/dist/chunk-5TG43IWT.js +0 -36
- package/dist/chunk-5UFZ4NET.mjs +0 -26
- package/dist/chunk-5VTJIH2Q.mjs +0 -63
- package/dist/chunk-5ZNSQDU5.js +0 -81
- package/dist/chunk-62MDIAG3.js +0 -19
- package/dist/chunk-62NUC6UZ.js +0 -51
- package/dist/chunk-6BWS3CLP.mjs +0 -16
- package/dist/chunk-6GXFVYK2.js +0 -18
- package/dist/chunk-6LNIYJMV.mjs +0 -21
- package/dist/chunk-6OOU3BX5.mjs +0 -35
- package/dist/chunk-6QXR4Q23.js +0 -43
- package/dist/chunk-6QZF75LH.js +0 -20
- package/dist/chunk-6TGTIMX2.mjs +0 -151
- package/dist/chunk-6UVWD65N.mjs +0 -63
- package/dist/chunk-73BBBL26.js +0 -49
- package/dist/chunk-7C2MCLYX.mjs +0 -15721
- package/dist/chunk-7IQW6MWT.mjs +0 -81
- package/dist/chunk-7IWAOHPW.mjs +0 -27
- package/dist/chunk-7LDYF5VW.js +0 -78
- package/dist/chunk-7POVLKQR.mjs +0 -20
- package/dist/chunk-7QCNINQB.js +0 -43
- package/dist/chunk-7RP7F74O.js +0 -49
- package/dist/chunk-7TMD372Q.mjs +0 -165
- package/dist/chunk-7UQSPUCL.mjs +0 -0
- package/dist/chunk-7V3T6MQ3.mjs +0 -21
- package/dist/chunk-7ZAVU2DI.mjs +0 -81
- package/dist/chunk-A4QVPMYT.js +0 -44
- package/dist/chunk-A5YXOL6G.mjs +0 -63
- package/dist/chunk-ABZZ2Y2O.mjs +0 -45
- package/dist/chunk-AH3KD37M.js +0 -45
- package/dist/chunk-AQWBYQGF.js +0 -54
- package/dist/chunk-AT4FPDTE.mjs +0 -51
- package/dist/chunk-AWKBY27N.js +0 -35
- package/dist/chunk-B2NENAKV.mjs +0 -34
- package/dist/chunk-B3RA7BAM.mjs +0 -30
- package/dist/chunk-B7MK7WHV.mjs +0 -21
- package/dist/chunk-BGE4WZH7.js +0 -27
- package/dist/chunk-BMQ2NETL.js +0 -63
- package/dist/chunk-BNJUSXEO.js +0 -27
- package/dist/chunk-BNUCXH6Q.js +0 -49
- package/dist/chunk-BS7IEV74.mjs +0 -1968
- package/dist/chunk-BVGE5IMC.js +0 -45
- package/dist/chunk-C3RGM3CB.js +0 -67
- package/dist/chunk-C6FQYK5T.js +0 -81
- package/dist/chunk-C6IEYVWV.mjs +0 -21
- package/dist/chunk-CC255UJD.mjs +0 -27
- package/dist/chunk-CK65OFQQ.mjs +0 -56
- package/dist/chunk-CKNDI3RH.js +0 -24
- package/dist/chunk-CRW5Q4VB.js +0 -30
- package/dist/chunk-CSOXFDKC.mjs +0 -42
- package/dist/chunk-D3DPNIYF.mjs +0 -36
- package/dist/chunk-D6QN54CO.js +0 -46
- package/dist/chunk-D74AUXZW.mjs +0 -35
- package/dist/chunk-DM5VFX6B.js +0 -17008
- package/dist/chunk-DN6VWFMI.js +0 -56
- package/dist/chunk-DONFLQME.js +0 -49
- package/dist/chunk-DQBTHPWE.js +0 -24
- package/dist/chunk-DSDX7NOV.mjs +0 -40
- package/dist/chunk-DX6NQK6H.js +0 -49
- package/dist/chunk-DXVB5THL.js +0 -36
- package/dist/chunk-DZCTAI2Q.js +0 -49
- package/dist/chunk-E3EZHXI2.mjs +0 -45
- package/dist/chunk-E3N3PWFI.js +0 -45
- package/dist/chunk-E7JW4TGQ.mjs +0 -49
- package/dist/chunk-ECTLN5SO.mjs +0 -63
- package/dist/chunk-EGCGEPYD.mjs +0 -24
- package/dist/chunk-ELK6OOE6.js +0 -55
- package/dist/chunk-EM67LVYX.mjs +0 -18
- package/dist/chunk-EPWKT75L.js +0 -63
- package/dist/chunk-ES6I4JEP.js +0 -24
- package/dist/chunk-ETS5PP3N.js +0 -42
- package/dist/chunk-EXLV2IRM.mjs +0 -26
- package/dist/chunk-EZFWJGGR.js +0 -28
- package/dist/chunk-F4NIEPKF.mjs +0 -48
- package/dist/chunk-F4WSUHUB.js +0 -27
- package/dist/chunk-F54WJZPR.mjs +0 -48
- package/dist/chunk-FDIHUTKO.mjs +0 -34
- package/dist/chunk-FG2O523S.js +0 -48
- package/dist/chunk-FGA73ALI.mjs +0 -45
- package/dist/chunk-FT5QWXEO.mjs +0 -21
- package/dist/chunk-FXTLAJTY.mjs +0 -74
- package/dist/chunk-G73JPAKW.mjs +0 -16831
- package/dist/chunk-GAOFL72U.mjs +0 -24
- package/dist/chunk-GF4PSVJ7.js +0 -81
- package/dist/chunk-GL777PKT.js +0 -21
- package/dist/chunk-GLK5ZVJB.js +0 -47
- package/dist/chunk-GMOMLI4W.js +0 -56
- package/dist/chunk-GNFZ7Z6V.mjs +0 -28
- package/dist/chunk-GNLLMLQX.js +0 -48
- package/dist/chunk-GNPP2GGZ.js +0 -16831
- package/dist/chunk-GR5EJCJ2.js +0 -24
- package/dist/chunk-GSFJYUDA.js +0 -63
- package/dist/chunk-GUIYTTMP.mjs +0 -24
- package/dist/chunk-HAIK2LXD.js +0 -63
- package/dist/chunk-HEHR64VN.js +0 -1972
- package/dist/chunk-HK4L636Y.mjs +0 -49
- package/dist/chunk-HLHMXAI2.js +0 -21
- package/dist/chunk-HMDAKHLF.js +0 -151
- package/dist/chunk-HMGGQ5ZJ.js +0 -45
- package/dist/chunk-HNCQJ5F3.js +0 -56
- package/dist/chunk-HVWSAC7Q.js +0 -74
- package/dist/chunk-I3BHVE4B.js +0 -43
- package/dist/chunk-IEYIHOHM.js +0 -57
- package/dist/chunk-IHDAERZ6.mjs +0 -61
- package/dist/chunk-IM5JST4B.js +0 -76
- package/dist/chunk-IN3R3ABZ.mjs +0 -45
- package/dist/chunk-IOLQKV4S.js +0 -51
- package/dist/chunk-IOXGSFEU.js +0 -20
- package/dist/chunk-IRHHL256.mjs +0 -36
- package/dist/chunk-IY4LBMAL.js +0 -78
- package/dist/chunk-IZVHA6FO.js +0 -45
- package/dist/chunk-JA2F23JA.mjs +0 -79
- package/dist/chunk-JC2FY5K5.mjs +0 -42
- package/dist/chunk-JFYN4RCQ.mjs +0 -24
- package/dist/chunk-JHNWL66I.mjs +0 -47
- package/dist/chunk-JIPBMHNL.mjs +0 -63
- package/dist/chunk-JIWCYW33.js +0 -35
- package/dist/chunk-JSZXNY5A.js +0 -33
- package/dist/chunk-JTURHVCR.mjs +0 -67
- package/dist/chunk-JUS3FQET.js +0 -63
- package/dist/chunk-JY2DLJQ7.js +0 -74
- package/dist/chunk-KB4QNLUX.js +0 -30
- package/dist/chunk-KDRX2A7A.mjs +0 -45
- package/dist/chunk-KDTNND32.js +0 -63
- package/dist/chunk-KESFLCJB.mjs +0 -57
- package/dist/chunk-KK4QURZV.mjs +0 -63
- package/dist/chunk-KKDNACGF.js +0 -78
- package/dist/chunk-KLYK2EDS.js +0 -18
- package/dist/chunk-KMAT3MEQ.mjs +0 -24
- package/dist/chunk-KMGBR4B7.mjs +0 -49
- package/dist/chunk-KO4BOJXG.mjs +0 -18
- package/dist/chunk-KSBJZ7PZ.mjs +0 -48
- package/dist/chunk-KUNWO6DB.js +0 -20
- package/dist/chunk-KVPPJDFE.mjs +0 -63
- package/dist/chunk-L55R55BM.mjs +0 -24
- package/dist/chunk-L5EOJC4C.mjs +0 -78
- package/dist/chunk-L63CILKL.js +0 -36
- package/dist/chunk-L7SUBSOS.mjs +0 -74
- package/dist/chunk-LCQV5ZXR.js +0 -63
- package/dist/chunk-LDVSCWU7.mjs +0 -51
- package/dist/chunk-LGYUIU5L.js +0 -33
- package/dist/chunk-LKLQIBRC.mjs +0 -18
- package/dist/chunk-LPLLITHD.mjs +0 -33
- package/dist/chunk-LSFOERXQ.js +0 -18
- package/dist/chunk-LSP4VVPM.mjs +0 -45
- package/dist/chunk-LYYFKB5U.mjs +0 -48
- package/dist/chunk-M2ERA63H.mjs +0 -20
- package/dist/chunk-M3JRMFX2.js +0 -36
- package/dist/chunk-M7SBPX3E.mjs +0 -45
- package/dist/chunk-MCHBNMZ7.js +0 -48
- package/dist/chunk-MHBVLDC4.js +0 -30
- package/dist/chunk-MJWNNESP.js +0 -57
- package/dist/chunk-MKTV5ZCC.mjs +0 -30
- package/dist/chunk-MLJAHDYX.mjs +0 -167
- package/dist/chunk-MNRDBDJD.js +0 -33
- package/dist/chunk-MTNLYYS2.mjs +0 -51
- package/dist/chunk-MYNHKOPJ.js +0 -34
- package/dist/chunk-N2ZA6SQB.mjs +0 -45
- package/dist/chunk-NBUVTD24.js +0 -24
- package/dist/chunk-NEFBZJ7G.mjs +0 -42
- package/dist/chunk-NGJNM6BX.mjs +0 -48
- package/dist/chunk-NO44Z2RV.mjs +0 -55
- package/dist/chunk-NOD5QLN5.js +0 -40
- package/dist/chunk-NP7ZKTAA.js +0 -36
- package/dist/chunk-NPYKAZ5O.mjs +0 -42
- package/dist/chunk-NWVKBRLA.js +0 -30
- package/dist/chunk-O73LDQID.mjs +0 -57
- package/dist/chunk-OAPPDES4.js +0 -51
- package/dist/chunk-OCKZOACK.js +0 -24
- package/dist/chunk-OETKBS7R.mjs +0 -63
- package/dist/chunk-OFMBEI6Y.js +0 -20
- package/dist/chunk-OJRNPQVE.js +0 -45
- package/dist/chunk-OKDN5R6M.mjs +0 -78
- package/dist/chunk-OLSCXZ3D.mjs +0 -98
- package/dist/chunk-OTDJMFZE.js +0 -36
- package/dist/chunk-OYP22DDC.mjs +0 -31
- package/dist/chunk-OZ5VJVBQ.js +0 -21
- package/dist/chunk-OZ7Y3D4Z.js +0 -48
- package/dist/chunk-OZU24BQP.mjs +0 -81
- package/dist/chunk-P2NEBQQH.mjs +0 -78
- package/dist/chunk-PBOBMHB3.js +0 -45
- package/dist/chunk-PECDKT6F.js +0 -76
- package/dist/chunk-PEMTSFQT.mjs +0 -36
- package/dist/chunk-PFTS7XQK.js +0 -27
- package/dist/chunk-PFVCJYEK.js +0 -46
- package/dist/chunk-PLNNO4GL.js +0 -36
- package/dist/chunk-PPQIZT6A.mjs +0 -48
- package/dist/chunk-PS673ZMG.mjs +0 -78
- package/dist/chunk-PSTZXVEM.mjs +0 -45
- package/dist/chunk-PXVILWPC.js +0 -51
- package/dist/chunk-PXXIPMA2.mjs +0 -17567
- package/dist/chunk-PYIUSFN2.js +0 -48
- package/dist/chunk-Q4BXZB6O.mjs +0 -35
- package/dist/chunk-Q6CVTFPU.mjs +0 -2022
- package/dist/chunk-Q7THO24V.js +0 -45
- package/dist/chunk-QEVQSGOW.mjs +0 -49
- package/dist/chunk-QFG2B4XU.js +0 -35
- package/dist/chunk-QH2RT36U.js +0 -57
- package/dist/chunk-QHW2YYKY.js +0 -45
- package/dist/chunk-QMNACCJG.mjs +0 -30
- package/dist/chunk-QN2KYEUJ.js +0 -28
- package/dist/chunk-QOATILWS.mjs +0 -48
- package/dist/chunk-QQWZ56UO.js +0 -33
- package/dist/chunk-QTT2TUDM.js +0 -165
- package/dist/chunk-QZQ32UPU.mjs +0 -28
- package/dist/chunk-R3MBRFOY.js +0 -22
- package/dist/chunk-R5U7XKVJ.js +0 -16
- package/dist/chunk-R7ZZJULR.js +0 -61
- package/dist/chunk-RA35MXTT.mjs +0 -51
- package/dist/chunk-RCDDW7NN.js +0 -36
- package/dist/chunk-RDATYKAG.mjs +0 -58
- package/dist/chunk-RDMAE6F2.js +0 -17567
- package/dist/chunk-RFTRP37B.mjs +0 -74
- package/dist/chunk-RIOEYYMH.mjs +0 -30
- package/dist/chunk-RJPUHGKC.mjs +0 -54
- package/dist/chunk-RM7GMMWN.mjs +0 -49
- package/dist/chunk-ROM4ZH2A.js +0 -56
- package/dist/chunk-RTENULN5.mjs +0 -36
- package/dist/chunk-RUTM5ENW.js +0 -57
- package/dist/chunk-RUUOAMRF.mjs +0 -43
- package/dist/chunk-RW4IZD3J.js +0 -74
- package/dist/chunk-RWSXJDFQ.mjs +0 -57
- package/dist/chunk-S2AEEWWW.mjs +0 -36
- package/dist/chunk-SAYLPMKP.js +0 -74
- package/dist/chunk-SDPCOC7O.mjs +0 -76
- package/dist/chunk-SEUDYVHA.js +0 -45
- package/dist/chunk-SMIDTCUZ.mjs +0 -56
- package/dist/chunk-SN2ALAEI.mjs +0 -36
- package/dist/chunk-SN4QTD6R.js +0 -1
- package/dist/chunk-SOFVWH6A.js +0 -56
- package/dist/chunk-SSFS7U3T.mjs +0 -72
- package/dist/chunk-SSZ5GGDT.js +0 -45
- package/dist/chunk-STKSA23M.mjs +0 -33
- package/dist/chunk-SVHWBNOB.mjs +0 -61
- package/dist/chunk-SVMTK42D.mjs +0 -48
- package/dist/chunk-SYIPILT6.mjs +0 -35
- package/dist/chunk-T4IVAGFU.mjs +0 -48
- package/dist/chunk-TKS2PTMF.mjs +0 -18
- package/dist/chunk-TLH73HQN.js +0 -63
- package/dist/chunk-TQIJQZBP.js +0 -57
- package/dist/chunk-TQTDHXR6.mjs +0 -22
- package/dist/chunk-TSDTKUIT.mjs +0 -151
- package/dist/chunk-TTPRXCNS.mjs +0 -46
- package/dist/chunk-TYWXW3FQ.mjs +0 -46
- package/dist/chunk-TZ2RKEBF.js +0 -2040
- package/dist/chunk-U3EACZZ3.js +0 -18
- package/dist/chunk-U3TS432W.js +0 -48
- package/dist/chunk-U634RJNK.js +0 -36
- package/dist/chunk-U7MLTDS4.js +0 -167
- package/dist/chunk-UCRPFQYY.js +0 -48
- package/dist/chunk-UEXFND2J.mjs +0 -56
- package/dist/chunk-UIYW7U2O.js +0 -28
- package/dist/chunk-UJ5Q7MZB.js +0 -78
- package/dist/chunk-UOSN6FPU.js +0 -42
- package/dist/chunk-UOY5QUAW.js +0 -63
- package/dist/chunk-UP3FJ7EK.mjs +0 -44
- package/dist/chunk-UQYEFGMG.mjs +0 -43
- package/dist/chunk-URX5VRVB.js +0 -24
- package/dist/chunk-USLYTOPD.mjs +0 -41
- package/dist/chunk-UUIIGFUZ.js +0 -33
- package/dist/chunk-UX7CIOBD.js +0 -61
- package/dist/chunk-V2AWKRQI.js +0 -26
- package/dist/chunk-V4JFB4H6.mjs +0 -45
- package/dist/chunk-V4P2FTIC.js +0 -72
- package/dist/chunk-VE3Q5LC3.mjs +0 -26
- package/dist/chunk-VKKQV6UO.js +0 -42
- package/dist/chunk-VOMHZHCC.js +0 -21
- package/dist/chunk-VTSJ33HJ.js +0 -18
- package/dist/chunk-VVELSEXL.mjs +0 -27
- package/dist/chunk-VX2IFBCP.mjs +0 -17008
- package/dist/chunk-VX346ARA.js +0 -42
- package/dist/chunk-VYV7BUJR.js +0 -42
- package/dist/chunk-W4CBCFMS.mjs +0 -36
- package/dist/chunk-W6QSJNDJ.js +0 -58
- package/dist/chunk-WDFGFSCS.js +0 -63
- package/dist/chunk-WGRAINAP.mjs +0 -43
- package/dist/chunk-WH4MHYUQ.mjs +0 -33
- package/dist/chunk-WJ6C635R.mjs +0 -45
- package/dist/chunk-WSYHZP5C.mjs +0 -28
- package/dist/chunk-X5WN73EF.js +0 -48
- package/dist/chunk-X7YFEBIL.mjs +0 -28
- package/dist/chunk-XB5AI72P.mjs +0 -24
- package/dist/chunk-XCCBDMTZ.mjs +0 -22
- package/dist/chunk-XG6RUZSI.mjs +0 -16
- package/dist/chunk-XGB3TDIC.mjs +0 -42
- package/dist/chunk-XI5L2ENL.js +0 -28
- package/dist/chunk-XIROUDIK.js +0 -151
- package/dist/chunk-XJ3B37LJ.js +0 -45
- package/dist/chunk-XJGSUINR.mjs +0 -24
- package/dist/chunk-XKWYGGIM.mjs +0 -36
- package/dist/chunk-XL5V4E3Z.js +0 -16
- package/dist/chunk-XMR5DWYS.mjs +0 -74
- package/dist/chunk-XN5RU4UY.js +0 -27
- package/dist/chunk-XR64DI5O.js +0 -31
- package/dist/chunk-XUZOVQYC.mjs +0 -42
- package/dist/chunk-XVQOUXV6.js +0 -48
- package/dist/chunk-XYNVAWSB.mjs +0 -45
- package/dist/chunk-Y2G3CY4Q.mjs +0 -51
- package/dist/chunk-YHZKCAK6.mjs +0 -49
- package/dist/chunk-YJXRZ5WX.mjs +0 -78
- package/dist/chunk-YNT5L5UH.js +0 -78
- package/dist/chunk-YRB3F2AG.mjs +0 -81
- package/dist/chunk-YRRALMO4.mjs +0 -36
- package/dist/chunk-YUFVOYYX.mjs +0 -57
- package/dist/chunk-YV3HYBCX.js +0 -45
- package/dist/chunk-YVASGALV.js +0 -81
- package/dist/chunk-YWFUY5A4.js +0 -30
- package/dist/chunk-YYSJWYK3.js +0 -21
- package/dist/chunk-YZNZHRY3.mjs +0 -81
- package/dist/chunk-Z46HCVNZ.js +0 -151
- package/dist/chunk-Z5HPFZ65.mjs +0 -35
- package/dist/chunk-ZADIRLZW.mjs +0 -56
- package/dist/chunk-ZAU43ZDI.mjs +0 -74
- package/dist/chunk-ZBU5LSC3.mjs +0 -45
- package/dist/chunk-ZDV7FI2F.js +0 -45
- package/dist/chunk-ZKVLWCGR.mjs +0 -63
- package/dist/chunk-ZN3MHVES.mjs +0 -57
- package/dist/chunk-ZPQ6LVKQ.mjs +0 -20
- package/dist/chunk-ZQA42PYM.mjs +0 -67
- package/dist/chunk-ZQYJPU4U.mjs +0 -76
- package/dist/chunk-ZSBGAX6X.js +0 -2022
- package/dist/chunk-ZT2QP4MD.mjs +0 -25
- package/dist/chunk-ZTUCFJLM.mjs +0 -33
- package/dist/chunk-ZWLHVT5O.js +0 -41
- package/dist/chunk-ZXWWD74E.mjs +0 -45
- package/dist/color-BT6BF8oV.d.mts +0 -61
- package/dist/color-BmTZnKiW.d.mts +0 -61
- package/dist/color-WFinq_Y4.d.ts +0 -61
- package/dist/color-lBH29suB.d.ts +0 -61
- package/dist/commerce-BqVjXEhQ.d.mts +0 -40
- package/dist/commerce-Ch71_dd2.d.ts +0 -40
- package/dist/commerce-IGFkOXjQ.d.mts +0 -40
- package/dist/commerce-mdOpchjx.d.ts +0 -40
- package/dist/common-CbuXAeQ-.d.mts +0 -11
- package/dist/common-IR_KozaJ.d.mts +0 -11
- package/dist/common-Kp8LaAzK.d.ts +0 -11
- package/dist/common-t-ZQebCq.d.ts +0 -11
- package/dist/company---O1IwYo.d.ts +0 -35
- package/dist/company-C3EU1J7k.d.ts +0 -35
- package/dist/company-D7Cc_hsx.d.mts +0 -35
- package/dist/company-cR_0hm6U.d.mts +0 -35
- package/dist/config-BTjogu5M.d.ts +0 -7
- package/dist/config-C1N2Brw-.d.mts +0 -7
- package/dist/config.d.mts +0 -2
- package/dist/config_scheme.d.mts +0 -32
- package/dist/create_config.d.mts +0 -58
- package/dist/create_config.test.d.mts +0 -2
- package/dist/create_config.test.js +0 -63
- package/dist/create_config.test.mjs +0 -63
- package/dist/create_generator_fn.d.mts +0 -12
- package/dist/create_generator_fn.test.d.mts +0 -2
- package/dist/create_generator_fn.test.js +0 -200
- package/dist/create_generator_fn.test.mjs +0 -200
- package/dist/database-B8Wr1oXH.d.mts +0 -23
- package/dist/database-DV9wgnca.d.ts +0 -23
- package/dist/database-Dnsy3cQb.d.ts +0 -23
- package/dist/database-UzO1Lwec.d.mts +0 -23
- package/dist/datatype-C92TZLxo.d.ts +0 -13
- package/dist/datatype-CAu_sc1g.d.ts +0 -13
- package/dist/datatype-DZjmP0fA.d.mts +0 -13
- package/dist/datatype-gjFHrdMj.d.mts +0 -13
- package/dist/datetime-BDgsnqq_.d.mts +0 -78
- package/dist/datetime-BkidbR1O.d.ts +0 -78
- package/dist/datetime-CSUpnUXU.d.ts +0 -78
- package/dist/datetime-dnPA_lnt.d.mts +0 -78
- package/dist/finance-BZEmlfNQ.d.mts +0 -90
- package/dist/finance-Cn3DFbX4.d.ts +0 -90
- package/dist/finance-CstKW1nH.d.mts +0 -90
- package/dist/finance-gj0fiEmf.d.ts +0 -90
- package/dist/food-CInj1GX2.d.ts +0 -35
- package/dist/food-CfxZX81O.d.mts +0 -35
- package/dist/food-Dk3-40CY.d.mts +0 -35
- package/dist/food-tr11e_Qp.d.ts +0 -35
- package/dist/generator_fn-CJDbnCZl.d.mts +0 -7
- package/dist/generator_fn-D-npAfnC.d.ts +0 -7
- package/dist/generator_fn.d.mts +0 -2
- package/dist/git-BHL1ppL4.d.ts +0 -31
- package/dist/git-DoCI9ZYT.d.ts +0 -31
- package/dist/git-Feo1ntKa.d.mts +0 -31
- package/dist/git-w0nznSjX.d.mts +0 -31
- package/dist/hacker-DL7pR6JO.d.ts +0 -26
- package/dist/hacker-FcQXZGtz.d.mts +0 -26
- package/dist/hacker-X3zBTMoE.d.ts +0 -26
- package/dist/hacker-mGVIO_wL.d.mts +0 -26
- package/dist/image-B5OPCNhD.d.mts +0 -56
- package/dist/image-BeZbZlyo.d.ts +0 -56
- package/dist/image-IyGCgqNf.d.ts +0 -56
- package/dist/image-govZ7HjA.d.mts +0 -56
- package/dist/index.d.mts +0 -5
- package/dist/internet-BWBjFZ1E.d.mts +0 -101
- package/dist/internet-BukCBMX-.d.ts +0 -106
- package/dist/internet-C2ElurWb.d.mts +0 -106
- package/dist/internet-CH_7YDHs.d.mts +0 -106
- package/dist/internet-CJEETk0v.d.mts +0 -101
- package/dist/internet-DLYaMWtd.d.ts +0 -106
- package/dist/internet-WmWuV39U.d.ts +0 -101
- package/dist/internet-jHHnqVJG.d.ts +0 -101
- package/dist/location-BIZ-KsaI.d.ts +0 -80
- package/dist/location-CTA_Bq7w.d.mts +0 -80
- package/dist/location-CsVekxIU.d.ts +0 -80
- package/dist/location-WU_nRdjx.d.mts +0 -80
- package/dist/lorem-BE4n3dVs.d.mts +0 -62
- package/dist/lorem-Btv0fltY.d.ts +0 -62
- package/dist/lorem-OlHaVntu.d.mts +0 -62
- package/dist/lorem-yMyLb-d-.d.ts +0 -62
- package/dist/magic-string.es-2DLPM6Q3.js +0 -1299
- package/dist/magic-string.es-NHTKQXSF.mjs +0 -1299
- package/dist/magic-string.es-PQN52XPX.js +0 -1288
- package/dist/magic-string.es-X3ME2TR2.mjs +0 -1288
- package/dist/music-CQ3lnDvg.d.mts +0 -20
- package/dist/music-D3zj5REe.d.ts +0 -20
- package/dist/music-P8XZ4JSO.d.ts +0 -20
- package/dist/music-vcWm9dzu.d.mts +0 -20
- package/dist/number-BfwwKvTJ.d.mts +0 -48
- package/dist/number-Bj9ydAOH.d.ts +0 -47
- package/dist/number-D5QmTRsK.d.ts +0 -48
- package/dist/number-D9Wn_qjS.d.mts +0 -47
- package/dist/number-DomDs-l5.d.mts +0 -47
- package/dist/number-DvzbKHZR.d.ts +0 -47
- package/dist/person-DXne2mKX.d.ts +0 -58
- package/dist/person-LLleVozS.d.ts +0 -58
- package/dist/person-OKRyYmeX.d.mts +0 -58
- package/dist/person-Si_vy67g.d.mts +0 -58
- package/dist/phone-Bc8UXPF3.d.ts +0 -16
- package/dist/phone-Cbxvm_Qv.d.ts +0 -16
- package/dist/phone-QbHXAqVF.d.mts +0 -16
- package/dist/phone-g4FDs50M.d.mts +0 -16
- package/dist/science-BX8WhoEY.d.ts +0 -15
- package/dist/science-BfA9sVXz.d.mts +0 -15
- package/dist/science-BgXAZ3YR.d.ts +0 -15
- package/dist/science-CSN41yUZ.d.mts +0 -15
- package/dist/string-9w976kVk.d.mts +0 -87
- package/dist/string-Cm9TczI6.d.ts +0 -87
- package/dist/string-DGScZrrP.d.mts +0 -87
- package/dist/string-Do4vhsl0.d.ts +0 -87
- package/dist/system-BpxbduIr.d.ts +0 -55
- package/dist/system-Cy0e05Cr.d.mts +0 -55
- package/dist/system-DOyHjHxs.d.mts +0 -55
- package/dist/system-DipW6DYb.d.ts +0 -55
- package/dist/system-EuG0S2Xy.d.mts +0 -55
- package/dist/system-ZV2S9Qw2.d.ts +0 -55
- package/dist/test.d.mts +0 -2
- package/dist/test.d.ts +0 -2
- package/dist/test.js +0 -15
- package/dist/test.mjs +0 -15
- package/dist/type-C8Ny1fB6.d.mts +0 -33
- package/dist/type-C8Ny1fB6.d.ts +0 -33
- package/dist/type.d.mts +0 -93
- package/dist/utils/airline.d.mts +0 -3
- package/dist/utils/animal.d.mts +0 -2
- package/dist/utils/color.d.mts +0 -3
- package/dist/utils/commerce.d.mts +0 -2
- package/dist/utils/common.d.mts +0 -2
- package/dist/utils/company.d.mts +0 -2
- package/dist/utils/database.d.mts +0 -2
- package/dist/utils/datatype.d.mts +0 -2
- package/dist/utils/datetime.d.mts +0 -2
- package/dist/utils/finance.d.mts +0 -3
- package/dist/utils/food.d.mts +0 -2
- package/dist/utils/git.d.mts +0 -2
- package/dist/utils/hacker.d.mts +0 -2
- package/dist/utils/image.d.mts +0 -2
- package/dist/utils/index.d.mts +0 -28
- package/dist/utils/internet.d.mts +0 -3
- package/dist/utils/location.d.mts +0 -2
- package/dist/utils/lorem.d.mts +0 -2
- package/dist/utils/music.d.mts +0 -2
- package/dist/utils/number.d.mts +0 -2
- package/dist/utils/person.d.mts +0 -3
- package/dist/utils/phone.d.mts +0 -2
- package/dist/utils/science.d.mts +0 -3
- package/dist/utils/string.d.mts +0 -2
- package/dist/utils/system.d.mts +0 -2
- package/dist/utils/utils.d.mts +0 -2
- package/dist/utils/vehicle.d.mts +0 -2
- package/dist/utils/word.d.mts +0 -75
- package/dist/utils-BImnOpvp.d.ts +0 -10
- package/dist/utils-BiDlGzTl.d.mts +0 -10
- package/dist/utils-DinJc3Cq.d.ts +0 -10
- package/dist/utils-zJKwaMUY.d.mts +0 -10
- package/dist/vehicle-D4yBDYMc.d.mts +0 -35
- package/dist/vehicle-DmBDda98.d.mts +0 -35
- package/dist/vehicle-Ufz4AoXu.d.ts +0 -35
- package/dist/vehicle-rnBz1Za2.d.ts +0 -35
- package/tsup.config.ts +0 -8
package/dist/create_config.mjs
CHANGED
|
@@ -1,18 +1,61 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import "./chunk-USLYTOPD.mjs";
|
|
10
|
-
import "./chunk-XGB3TDIC.mjs";
|
|
11
|
-
export {
|
|
12
|
-
createArrayConfig,
|
|
13
|
-
createBoundedSeriesConfig,
|
|
14
|
-
createObjectConfig,
|
|
15
|
-
createSelectionConfig,
|
|
16
|
-
createTupleConfig,
|
|
17
|
-
createValueConfig
|
|
1
|
+
import { arrayConfigScheme, boundedSeriesScheme, objConfigScheme, selectionConfigScheme, tupleConfigScheme, valueConfigScheme } from "./config_scheme.mjs";
|
|
2
|
+
const createValueConfig = (generateFn)=>{
|
|
3
|
+
const config = {
|
|
4
|
+
type: "value",
|
|
5
|
+
generateFn
|
|
6
|
+
};
|
|
7
|
+
valueConfigScheme.parse(config);
|
|
8
|
+
return config;
|
|
18
9
|
};
|
|
10
|
+
const createSelectionConfig = (items)=>{
|
|
11
|
+
const config = {
|
|
12
|
+
type: "select",
|
|
13
|
+
items
|
|
14
|
+
};
|
|
15
|
+
selectionConfigScheme.parse(config);
|
|
16
|
+
return config;
|
|
17
|
+
};
|
|
18
|
+
function createObjectConfig(content, transformer) {
|
|
19
|
+
if (transformer) {
|
|
20
|
+
const config = {
|
|
21
|
+
type: "obj",
|
|
22
|
+
content,
|
|
23
|
+
transformer
|
|
24
|
+
};
|
|
25
|
+
objConfigScheme.parse(config);
|
|
26
|
+
return config;
|
|
27
|
+
}
|
|
28
|
+
const config = {
|
|
29
|
+
type: "obj",
|
|
30
|
+
content
|
|
31
|
+
};
|
|
32
|
+
objConfigScheme.parse(config);
|
|
33
|
+
return config;
|
|
34
|
+
}
|
|
35
|
+
const createArrayConfig = (item, len, next)=>{
|
|
36
|
+
const config = {
|
|
37
|
+
type: "arr",
|
|
38
|
+
item,
|
|
39
|
+
len,
|
|
40
|
+
next
|
|
41
|
+
};
|
|
42
|
+
arrayConfigScheme.parse(config);
|
|
43
|
+
return config;
|
|
44
|
+
};
|
|
45
|
+
const createTupleConfig = (configItems)=>{
|
|
46
|
+
const config = {
|
|
47
|
+
type: "tuple",
|
|
48
|
+
configItems
|
|
49
|
+
};
|
|
50
|
+
tupleConfigScheme.parse(config);
|
|
51
|
+
return config;
|
|
52
|
+
};
|
|
53
|
+
const createBoundedSeriesConfig = (config)=>{
|
|
54
|
+
const newConfig = {
|
|
55
|
+
type: "bounded_series",
|
|
56
|
+
...config
|
|
57
|
+
};
|
|
58
|
+
boundedSeriesScheme.parse(newConfig);
|
|
59
|
+
return newConfig;
|
|
60
|
+
};
|
|
61
|
+
export { createArrayConfig, createBoundedSeriesConfig, createObjectConfig, createSelectionConfig, createTupleConfig, createValueConfig };
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { }
|
|
1
|
+
export {};
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import type { ArrayConfig, BoundedSeriesConfig, ObjectConfig, ObjectConfigWithFn, Result, SelectionConfig, TupleConfig, ValueConfig } from "./type";
|
|
3
2
|
type AllConfig<T> = ValueConfig<T> | SelectionConfig<T> | ArrayConfig<T> | ObjectConfig<T> | ObjectConfigWithFn<T, unknown> | TupleConfig<T> | TupleConfig<T, T> | TupleConfig<T, T, T> | TupleConfig<T, T, T, T> | TupleConfig<T, T, T, T, T> | TupleConfig<T, T, T, T, T, T> | TupleConfig<T, T, T, T, T, T, T> | TupleConfig<T, T, T, T, T, T, T, T> | TupleConfig<T, T, T, T, T, T, T, T, T> | TupleConfig<T, T, T, T, T, T, T, T, T, T> | BoundedSeriesConfig;
|
|
4
|
-
declare const createValueGenerator: <R = unknown>(config: ValueConfig<unknown>) => (() => R);
|
|
5
|
-
declare const createSelectionGenerator: <T extends SelectionConfig<unknown>>(config: T) => (() => Result<T>);
|
|
6
|
-
declare const createObjectGenerator: <T extends ObjectConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path?: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
7
|
-
declare const createArrayGenerator: <T extends ArrayConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path?: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
8
|
-
declare const createTupleGenerator: <T extends TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown> | TupleConfig<unknown, unknown> | TupleConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
9
|
-
declare const createBoundedSeriesGenerator: <T extends BoundedSeriesConfig>(config: T) => (() => Result<T>);
|
|
10
|
-
declare const createGeneratorByType: <T extends AllConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
11
|
-
|
|
12
|
-
export { createArrayGenerator, createBoundedSeriesGenerator, createGeneratorByType, createObjectGenerator, createSelectionGenerator, createTupleGenerator, createValueGenerator };
|
|
3
|
+
export declare const createValueGenerator: <R = unknown>(config: ValueConfig<unknown>) => (() => R);
|
|
4
|
+
export declare const createSelectionGenerator: <T extends SelectionConfig<unknown>>(config: T) => (() => Result<T>);
|
|
5
|
+
export declare const createObjectGenerator: <T extends ObjectConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path?: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
6
|
+
export declare const createArrayGenerator: <T extends ArrayConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path?: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
7
|
+
export declare const createTupleGenerator: <T extends TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown, unknown> | TupleConfig<unknown, unknown, unknown> | TupleConfig<unknown, unknown> | TupleConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
8
|
+
export declare const createBoundedSeriesGenerator: <T extends BoundedSeriesConfig>(config: T) => (() => Result<T>);
|
|
9
|
+
export declare const createGeneratorByType: <T extends AllConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
10
|
+
export {};
|
|
@@ -1,20 +1,168 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
+
createTupleGenerator: ()=>createTupleGenerator,
|
|
28
|
+
createValueGenerator: ()=>createValueGenerator,
|
|
29
|
+
createArrayGenerator: ()=>createArrayGenerator,
|
|
30
|
+
createBoundedSeriesGenerator: ()=>createBoundedSeriesGenerator,
|
|
31
|
+
createObjectGenerator: ()=>createObjectGenerator,
|
|
32
|
+
createSelectionGenerator: ()=>createSelectionGenerator,
|
|
33
|
+
createGeneratorByType: ()=>createGeneratorByType
|
|
34
|
+
});
|
|
35
|
+
const faker_namespaceObject = require("@faker-js/faker");
|
|
36
|
+
const external_config_scheme_js_namespaceObject = require("./config_scheme.js");
|
|
37
|
+
const _createValueGenerator = (config, path)=>{
|
|
38
|
+
try {
|
|
39
|
+
external_config_scheme_js_namespaceObject.valueConfigScheme.parse(config);
|
|
40
|
+
} catch (err) {
|
|
41
|
+
throw new Error(`config path: ${path}.value\n${err}`);
|
|
42
|
+
}
|
|
43
|
+
return config.generateFn;
|
|
44
|
+
};
|
|
45
|
+
const createValueGenerator = (config)=>_createValueGenerator(config, "*");
|
|
46
|
+
const _createSelectionGenerator = (config, path)=>{
|
|
47
|
+
try {
|
|
48
|
+
external_config_scheme_js_namespaceObject.selectionConfigScheme.parse(config);
|
|
49
|
+
} catch (err) {
|
|
50
|
+
throw new Error(`config path: ${path}.select\n${err}`);
|
|
51
|
+
}
|
|
52
|
+
const { items } = config;
|
|
53
|
+
return ()=>items[faker_namespaceObject.faker.number.int(items.length - 1)];
|
|
54
|
+
};
|
|
55
|
+
const createSelectionGenerator = (config)=>_createSelectionGenerator(config, "*");
|
|
56
|
+
const _createObjectGenerator = (config, path, customTypeMatch)=>{
|
|
57
|
+
try {
|
|
58
|
+
external_config_scheme_js_namespaceObject.objConfigScheme.parse(config);
|
|
59
|
+
} catch (err) {
|
|
60
|
+
throw new Error(`config path: ${path}.obj\n ${err}`);
|
|
61
|
+
}
|
|
62
|
+
const keyWithFns = Object.entries(config.content).map(([key, subConfig])=>[
|
|
63
|
+
key,
|
|
64
|
+
_createGeneratorByType(subConfig, `${path}.obj[${key}]`, customTypeMatch)
|
|
65
|
+
]);
|
|
66
|
+
return ()=>{
|
|
67
|
+
const result = {};
|
|
68
|
+
for (const [key, generateFn] of keyWithFns)result[key] = generateFn();
|
|
69
|
+
if ("transformer" in config && "function" == typeof config.transformer) return config.transformer(result);
|
|
70
|
+
return result;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
const createObjectGenerator = (config, customTypeMatch)=>_createObjectGenerator(config, "*", customTypeMatch);
|
|
74
|
+
const _createArrayGenerator = (config, path, customTypeMatch)=>{
|
|
75
|
+
try {
|
|
76
|
+
external_config_scheme_js_namespaceObject.arrayConfigScheme.parse(config);
|
|
77
|
+
} catch (err) {
|
|
78
|
+
throw new Error(`config path: ${path}.arr\n ${err}`);
|
|
79
|
+
}
|
|
80
|
+
const itemGeneratorFn = _createGeneratorByType(config.item, `${path}.arr`, customTypeMatch);
|
|
81
|
+
if (config.next) {
|
|
82
|
+
const next = config.next;
|
|
83
|
+
return ()=>{
|
|
84
|
+
let prev = itemGeneratorFn();
|
|
85
|
+
const result = [];
|
|
86
|
+
for(let i = 0; i < config.len; i++){
|
|
87
|
+
const nextValue = next(prev, itemGeneratorFn());
|
|
88
|
+
result.push(nextValue);
|
|
89
|
+
prev = nextValue;
|
|
90
|
+
}
|
|
91
|
+
return result;
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
return ()=>Array.from({
|
|
95
|
+
length: config.len ?? 0
|
|
96
|
+
}, itemGeneratorFn);
|
|
97
|
+
};
|
|
98
|
+
const createArrayGenerator = (config, customTypeMatch)=>_createArrayGenerator(config, "*", customTypeMatch);
|
|
99
|
+
const _createTupleGenerator = (config, path, customTypeMatch)=>{
|
|
100
|
+
try {
|
|
101
|
+
external_config_scheme_js_namespaceObject.tupleConfigScheme.parse(config);
|
|
102
|
+
} catch (err) {
|
|
103
|
+
throw new Error(`config path: ${path}.tuple\n ${err}`);
|
|
104
|
+
}
|
|
105
|
+
const itemsFns = config.configItems.map((configItem, index)=>_createGeneratorByType(configItem, `${path}.tuple[${index}]`, customTypeMatch));
|
|
106
|
+
return ()=>itemsFns.map((generateFn)=>generateFn());
|
|
107
|
+
};
|
|
108
|
+
const createTupleGenerator = (config, customTypeMatch)=>_createTupleGenerator(config, "*", customTypeMatch);
|
|
109
|
+
const _createBoundedSeriesGenerator = (config, path)=>{
|
|
110
|
+
try {
|
|
111
|
+
external_config_scheme_js_namespaceObject.boundedSeriesScheme.parse(config);
|
|
112
|
+
} catch (err) {
|
|
113
|
+
throw new Error(`config path: ${path}.boundedSeries\n ${err}`);
|
|
114
|
+
}
|
|
115
|
+
const { upperLimit, lowerLimit, createInitValue, count } = config;
|
|
116
|
+
return ()=>{
|
|
117
|
+
let value = createInitValue();
|
|
118
|
+
const boundedSeries = [];
|
|
119
|
+
for(let i = 0; i < count; i++){
|
|
120
|
+
value = faker_namespaceObject.faker.number.float({
|
|
121
|
+
max: upperLimit,
|
|
122
|
+
min: lowerLimit
|
|
123
|
+
}) * value;
|
|
124
|
+
boundedSeries.push(value);
|
|
125
|
+
}
|
|
126
|
+
return boundedSeries;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
const createBoundedSeriesGenerator = (config)=>_createBoundedSeriesGenerator(config, "*");
|
|
130
|
+
const _createGeneratorByType = (config, path, customTypeMatch)=>{
|
|
131
|
+
switch(config.type){
|
|
132
|
+
case "obj":
|
|
133
|
+
return _createObjectGenerator(config, path, customTypeMatch);
|
|
134
|
+
case "arr":
|
|
135
|
+
return _createArrayGenerator(config, path, customTypeMatch);
|
|
136
|
+
case "tuple":
|
|
137
|
+
return _createTupleGenerator(config, path, customTypeMatch);
|
|
138
|
+
case "select":
|
|
139
|
+
return _createSelectionGenerator(config, path);
|
|
140
|
+
case "value":
|
|
141
|
+
return _createValueGenerator(config, path);
|
|
142
|
+
case "bounded_series":
|
|
143
|
+
return _createBoundedSeriesGenerator(config, path);
|
|
144
|
+
default:
|
|
145
|
+
if (customTypeMatch) return createValueGenerator(customTypeMatch(config, path));
|
|
146
|
+
throw new Error(`path: ${path}\nconfig type is not supported`);
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
const createGeneratorByType = (config, customTypeMatch)=>_createGeneratorByType(config, "*", customTypeMatch);
|
|
150
|
+
exports.createArrayGenerator = __webpack_exports__.createArrayGenerator;
|
|
151
|
+
exports.createBoundedSeriesGenerator = __webpack_exports__.createBoundedSeriesGenerator;
|
|
152
|
+
exports.createGeneratorByType = __webpack_exports__.createGeneratorByType;
|
|
153
|
+
exports.createObjectGenerator = __webpack_exports__.createObjectGenerator;
|
|
154
|
+
exports.createSelectionGenerator = __webpack_exports__.createSelectionGenerator;
|
|
155
|
+
exports.createTupleGenerator = __webpack_exports__.createTupleGenerator;
|
|
156
|
+
exports.createValueGenerator = __webpack_exports__.createValueGenerator;
|
|
157
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
158
|
+
"createArrayGenerator",
|
|
159
|
+
"createBoundedSeriesGenerator",
|
|
160
|
+
"createGeneratorByType",
|
|
161
|
+
"createObjectGenerator",
|
|
162
|
+
"createSelectionGenerator",
|
|
163
|
+
"createTupleGenerator",
|
|
164
|
+
"createValueGenerator"
|
|
165
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
166
|
+
Object.defineProperty(exports, '__esModule', {
|
|
167
|
+
value: true
|
|
168
|
+
});
|
|
@@ -1,20 +1,116 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import "./chunk-USLYTOPD.mjs";
|
|
11
|
-
import "./chunk-XGB3TDIC.mjs";
|
|
12
|
-
export {
|
|
13
|
-
createArrayGenerator,
|
|
14
|
-
createBoundedSeriesGenerator,
|
|
15
|
-
createGeneratorByType,
|
|
16
|
-
createObjectGenerator,
|
|
17
|
-
createSelectionGenerator,
|
|
18
|
-
createTupleGenerator,
|
|
19
|
-
createValueGenerator
|
|
1
|
+
import { faker } from "@faker-js/faker";
|
|
2
|
+
import { arrayConfigScheme, boundedSeriesScheme, objConfigScheme, selectionConfigScheme, tupleConfigScheme, valueConfigScheme } from "./config_scheme.mjs";
|
|
3
|
+
const _createValueGenerator = (config, path)=>{
|
|
4
|
+
try {
|
|
5
|
+
valueConfigScheme.parse(config);
|
|
6
|
+
} catch (err) {
|
|
7
|
+
throw new Error(`config path: ${path}.value\n${err}`);
|
|
8
|
+
}
|
|
9
|
+
return config.generateFn;
|
|
20
10
|
};
|
|
11
|
+
const createValueGenerator = (config)=>_createValueGenerator(config, "*");
|
|
12
|
+
const _createSelectionGenerator = (config, path)=>{
|
|
13
|
+
try {
|
|
14
|
+
selectionConfigScheme.parse(config);
|
|
15
|
+
} catch (err) {
|
|
16
|
+
throw new Error(`config path: ${path}.select\n${err}`);
|
|
17
|
+
}
|
|
18
|
+
const { items } = config;
|
|
19
|
+
return ()=>items[faker.number.int(items.length - 1)];
|
|
20
|
+
};
|
|
21
|
+
const createSelectionGenerator = (config)=>_createSelectionGenerator(config, "*");
|
|
22
|
+
const _createObjectGenerator = (config, path, customTypeMatch)=>{
|
|
23
|
+
try {
|
|
24
|
+
objConfigScheme.parse(config);
|
|
25
|
+
} catch (err) {
|
|
26
|
+
throw new Error(`config path: ${path}.obj\n ${err}`);
|
|
27
|
+
}
|
|
28
|
+
const keyWithFns = Object.entries(config.content).map(([key, subConfig])=>[
|
|
29
|
+
key,
|
|
30
|
+
_createGeneratorByType(subConfig, `${path}.obj[${key}]`, customTypeMatch)
|
|
31
|
+
]);
|
|
32
|
+
return ()=>{
|
|
33
|
+
const result = {};
|
|
34
|
+
for (const [key, generateFn] of keyWithFns)result[key] = generateFn();
|
|
35
|
+
if ("transformer" in config && "function" == typeof config.transformer) return config.transformer(result);
|
|
36
|
+
return result;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
const createObjectGenerator = (config, customTypeMatch)=>_createObjectGenerator(config, "*", customTypeMatch);
|
|
40
|
+
const _createArrayGenerator = (config, path, customTypeMatch)=>{
|
|
41
|
+
try {
|
|
42
|
+
arrayConfigScheme.parse(config);
|
|
43
|
+
} catch (err) {
|
|
44
|
+
throw new Error(`config path: ${path}.arr\n ${err}`);
|
|
45
|
+
}
|
|
46
|
+
const itemGeneratorFn = _createGeneratorByType(config.item, `${path}.arr`, customTypeMatch);
|
|
47
|
+
if (config.next) {
|
|
48
|
+
const next = config.next;
|
|
49
|
+
return ()=>{
|
|
50
|
+
let prev = itemGeneratorFn();
|
|
51
|
+
const result = [];
|
|
52
|
+
for(let i = 0; i < config.len; i++){
|
|
53
|
+
const nextValue = next(prev, itemGeneratorFn());
|
|
54
|
+
result.push(nextValue);
|
|
55
|
+
prev = nextValue;
|
|
56
|
+
}
|
|
57
|
+
return result;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
return ()=>Array.from({
|
|
61
|
+
length: config.len ?? 0
|
|
62
|
+
}, itemGeneratorFn);
|
|
63
|
+
};
|
|
64
|
+
const createArrayGenerator = (config, customTypeMatch)=>_createArrayGenerator(config, "*", customTypeMatch);
|
|
65
|
+
const _createTupleGenerator = (config, path, customTypeMatch)=>{
|
|
66
|
+
try {
|
|
67
|
+
tupleConfigScheme.parse(config);
|
|
68
|
+
} catch (err) {
|
|
69
|
+
throw new Error(`config path: ${path}.tuple\n ${err}`);
|
|
70
|
+
}
|
|
71
|
+
const itemsFns = config.configItems.map((configItem, index)=>_createGeneratorByType(configItem, `${path}.tuple[${index}]`, customTypeMatch));
|
|
72
|
+
return ()=>itemsFns.map((generateFn)=>generateFn());
|
|
73
|
+
};
|
|
74
|
+
const createTupleGenerator = (config, customTypeMatch)=>_createTupleGenerator(config, "*", customTypeMatch);
|
|
75
|
+
const _createBoundedSeriesGenerator = (config, path)=>{
|
|
76
|
+
try {
|
|
77
|
+
boundedSeriesScheme.parse(config);
|
|
78
|
+
} catch (err) {
|
|
79
|
+
throw new Error(`config path: ${path}.boundedSeries\n ${err}`);
|
|
80
|
+
}
|
|
81
|
+
const { upperLimit, lowerLimit, createInitValue, count } = config;
|
|
82
|
+
return ()=>{
|
|
83
|
+
let value = createInitValue();
|
|
84
|
+
const boundedSeries = [];
|
|
85
|
+
for(let i = 0; i < count; i++){
|
|
86
|
+
value = faker.number.float({
|
|
87
|
+
max: upperLimit,
|
|
88
|
+
min: lowerLimit
|
|
89
|
+
}) * value;
|
|
90
|
+
boundedSeries.push(value);
|
|
91
|
+
}
|
|
92
|
+
return boundedSeries;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
const createBoundedSeriesGenerator = (config)=>_createBoundedSeriesGenerator(config, "*");
|
|
96
|
+
const _createGeneratorByType = (config, path, customTypeMatch)=>{
|
|
97
|
+
switch(config.type){
|
|
98
|
+
case "obj":
|
|
99
|
+
return _createObjectGenerator(config, path, customTypeMatch);
|
|
100
|
+
case "arr":
|
|
101
|
+
return _createArrayGenerator(config, path, customTypeMatch);
|
|
102
|
+
case "tuple":
|
|
103
|
+
return _createTupleGenerator(config, path, customTypeMatch);
|
|
104
|
+
case "select":
|
|
105
|
+
return _createSelectionGenerator(config, path);
|
|
106
|
+
case "value":
|
|
107
|
+
return _createValueGenerator(config, path);
|
|
108
|
+
case "bounded_series":
|
|
109
|
+
return _createBoundedSeriesGenerator(config, path);
|
|
110
|
+
default:
|
|
111
|
+
if (customTypeMatch) return createValueGenerator(customTypeMatch(config, path));
|
|
112
|
+
throw new Error(`path: ${path}\nconfig type is not supported`);
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
const createGeneratorByType = (config, customTypeMatch)=>_createGeneratorByType(config, "*", customTypeMatch);
|
|
116
|
+
export { createArrayGenerator, createBoundedSeriesGenerator, createGeneratorByType, createObjectGenerator, createSelectionGenerator, createTupleGenerator, createValueGenerator };
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { }
|
|
1
|
+
export {};
|
package/dist/generator_fn.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export { createArrayGenerator as genArrayFn, createBoundedSeriesGenerator as genBoundedSeriesFn, createGeneratorByType as genFn, createObjectGenerator as genObjectFn, createSelectionGenerator as genSelectFn, createTupleGenerator as genTupleFn, createValueGenerator as genValueFn } from
|
|
2
|
-
import './type.js';
|
|
1
|
+
export { createArrayGenerator as genArrayFn, createBoundedSeriesGenerator as genBoundedSeriesFn, createGeneratorByType as genFn, createObjectGenerator as genObjectFn, createSelectionGenerator as genSelectFn, createTupleGenerator as genTupleFn, createValueGenerator as genValueFn, } from "./create_generator_fn";
|
package/dist/generator_fn.js
CHANGED
|
@@ -1,21 +1,54 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
+
genObjectFn: ()=>external_create_generator_fn_js_namespaceObject.createObjectGenerator,
|
|
28
|
+
genValueFn: ()=>external_create_generator_fn_js_namespaceObject.createValueGenerator,
|
|
29
|
+
genFn: ()=>external_create_generator_fn_js_namespaceObject.createGeneratorByType,
|
|
30
|
+
genTupleFn: ()=>external_create_generator_fn_js_namespaceObject.createTupleGenerator,
|
|
31
|
+
genArrayFn: ()=>external_create_generator_fn_js_namespaceObject.createArrayGenerator,
|
|
32
|
+
genBoundedSeriesFn: ()=>external_create_generator_fn_js_namespaceObject.createBoundedSeriesGenerator,
|
|
33
|
+
genSelectFn: ()=>external_create_generator_fn_js_namespaceObject.createSelectionGenerator
|
|
34
|
+
});
|
|
35
|
+
const external_create_generator_fn_js_namespaceObject = require("./create_generator_fn.js");
|
|
36
|
+
exports.genArrayFn = __webpack_exports__.genArrayFn;
|
|
37
|
+
exports.genBoundedSeriesFn = __webpack_exports__.genBoundedSeriesFn;
|
|
38
|
+
exports.genFn = __webpack_exports__.genFn;
|
|
39
|
+
exports.genObjectFn = __webpack_exports__.genObjectFn;
|
|
40
|
+
exports.genSelectFn = __webpack_exports__.genSelectFn;
|
|
41
|
+
exports.genTupleFn = __webpack_exports__.genTupleFn;
|
|
42
|
+
exports.genValueFn = __webpack_exports__.genValueFn;
|
|
43
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
44
|
+
"genArrayFn",
|
|
45
|
+
"genBoundedSeriesFn",
|
|
46
|
+
"genFn",
|
|
47
|
+
"genObjectFn",
|
|
48
|
+
"genSelectFn",
|
|
49
|
+
"genTupleFn",
|
|
50
|
+
"genValueFn"
|
|
51
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
52
|
+
Object.defineProperty(exports, '__esModule', {
|
|
53
|
+
value: true
|
|
54
|
+
});
|
package/dist/generator_fn.mjs
CHANGED
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
import "./
|
|
2
|
-
|
|
3
|
-
createArrayGenerator,
|
|
4
|
-
createBoundedSeriesGenerator,
|
|
5
|
-
createGeneratorByType,
|
|
6
|
-
createObjectGenerator,
|
|
7
|
-
createSelectionGenerator,
|
|
8
|
-
createTupleGenerator,
|
|
9
|
-
createValueGenerator
|
|
10
|
-
} from "./chunk-7TMD372Q.mjs";
|
|
11
|
-
import "./chunk-USLYTOPD.mjs";
|
|
12
|
-
import "./chunk-XGB3TDIC.mjs";
|
|
13
|
-
export {
|
|
14
|
-
createArrayGenerator as genArrayFn,
|
|
15
|
-
createBoundedSeriesGenerator as genBoundedSeriesFn,
|
|
16
|
-
createGeneratorByType as genFn,
|
|
17
|
-
createObjectGenerator as genObjectFn,
|
|
18
|
-
createSelectionGenerator as genSelectFn,
|
|
19
|
-
createTupleGenerator as genTupleFn,
|
|
20
|
-
createValueGenerator as genValueFn
|
|
21
|
-
};
|
|
1
|
+
import { createArrayGenerator, createBoundedSeriesGenerator, createGeneratorByType, createObjectGenerator, createSelectionGenerator, createTupleGenerator, createValueGenerator } from "./create_generator_fn.mjs";
|
|
2
|
+
export { createArrayGenerator as genArrayFn, createBoundedSeriesGenerator as genBoundedSeriesFn, createGeneratorByType as genFn, createObjectGenerator as genObjectFn, createSelectionGenerator as genSelectFn, createTupleGenerator as genTupleFn, createValueGenerator as genValueFn };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
1
|
+
export * as StructConfig from "./config";
|
|
2
|
+
export * from "./create_config";
|
|
3
|
+
export * from "./create_generator_fn";
|
|
4
|
+
export * as StructGenerator from "./generator_fn";
|
|
5
|
+
export * from "./type";
|