bupkis 0.18.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (388) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +1 -1
  3. package/dist/assertion/assertion-async.cjs +268 -0
  4. package/dist/assertion/assertion-async.cjs.map +1 -0
  5. package/dist/assertion/assertion-async.d.cts +40 -0
  6. package/dist/assertion/assertion-async.d.cts.map +1 -0
  7. package/dist/assertion/assertion-async.d.ts +40 -0
  8. package/dist/assertion/assertion-async.d.ts.map +1 -0
  9. package/dist/assertion/assertion-async.js +259 -0
  10. package/dist/assertion/assertion-async.js.map +1 -0
  11. package/dist/assertion/assertion-standard-schema-async.cjs +132 -0
  12. package/dist/assertion/assertion-standard-schema-async.cjs.map +1 -0
  13. package/dist/assertion/assertion-standard-schema-async.d.cts +52 -0
  14. package/dist/assertion/assertion-standard-schema-async.d.cts.map +1 -0
  15. package/dist/assertion/assertion-standard-schema-async.d.ts +52 -0
  16. package/dist/assertion/assertion-standard-schema-async.d.ts.map +1 -0
  17. package/dist/assertion/assertion-standard-schema-async.js +128 -0
  18. package/dist/assertion/assertion-standard-schema-async.js.map +1 -0
  19. package/dist/assertion/assertion-standard-schema-sync.cjs +141 -0
  20. package/dist/assertion/assertion-standard-schema-sync.cjs.map +1 -0
  21. package/dist/assertion/assertion-standard-schema-sync.d.cts +52 -0
  22. package/dist/assertion/assertion-standard-schema-sync.d.cts.map +1 -0
  23. package/dist/assertion/assertion-standard-schema-sync.d.ts +52 -0
  24. package/dist/assertion/assertion-standard-schema-sync.d.ts.map +1 -0
  25. package/dist/assertion/assertion-standard-schema-sync.js +137 -0
  26. package/dist/assertion/assertion-standard-schema-sync.js.map +1 -0
  27. package/dist/assertion/assertion-sync.cjs +281 -0
  28. package/dist/assertion/assertion-sync.cjs.map +1 -0
  29. package/dist/assertion/assertion-sync.d.cts +60 -0
  30. package/dist/assertion/assertion-sync.d.cts.map +1 -0
  31. package/dist/assertion/assertion-sync.d.ts +60 -0
  32. package/dist/assertion/assertion-sync.d.ts.map +1 -0
  33. package/dist/assertion/assertion-sync.js +275 -0
  34. package/dist/assertion/assertion-sync.js.map +1 -0
  35. package/dist/assertion/assertion-types.cjs +20 -0
  36. package/dist/assertion/assertion-types.cjs.map +1 -0
  37. package/dist/assertion/assertion-types.d.cts +1086 -0
  38. package/dist/assertion/assertion-types.d.cts.map +1 -0
  39. package/dist/assertion/assertion-types.d.ts +1086 -0
  40. package/dist/assertion/assertion-types.d.ts.map +1 -0
  41. package/dist/assertion/assertion-types.js +19 -0
  42. package/dist/assertion/assertion-types.js.map +1 -0
  43. package/dist/assertion/assertion.cjs +382 -0
  44. package/dist/assertion/assertion.cjs.map +1 -0
  45. package/dist/assertion/assertion.d.cts +109 -0
  46. package/dist/assertion/assertion.d.cts.map +1 -0
  47. package/dist/assertion/assertion.d.ts +109 -0
  48. package/dist/assertion/assertion.d.ts.map +1 -0
  49. package/dist/assertion/assertion.js +375 -0
  50. package/dist/assertion/assertion.js.map +1 -0
  51. package/dist/assertion/create.cjs +148 -0
  52. package/dist/assertion/create.cjs.map +1 -0
  53. package/dist/assertion/create.d.cts +85 -0
  54. package/dist/assertion/create.d.cts.map +1 -0
  55. package/dist/assertion/create.d.ts +85 -0
  56. package/dist/assertion/create.d.ts.map +1 -0
  57. package/dist/assertion/create.js +143 -0
  58. package/dist/assertion/create.js.map +1 -0
  59. package/dist/assertion/format-assertion-failure.cjs +63 -0
  60. package/dist/assertion/format-assertion-failure.cjs.map +1 -0
  61. package/dist/assertion/format-assertion-failure.d.cts +21 -0
  62. package/dist/assertion/format-assertion-failure.d.cts.map +1 -0
  63. package/dist/assertion/format-assertion-failure.d.ts +21 -0
  64. package/dist/assertion/format-assertion-failure.d.ts.map +1 -0
  65. package/dist/assertion/format-assertion-failure.js +59 -0
  66. package/dist/assertion/format-assertion-failure.js.map +1 -0
  67. package/dist/assertion/impl/assertion-util.cjs +68 -0
  68. package/dist/assertion/impl/assertion-util.cjs.map +1 -0
  69. package/dist/assertion/impl/assertion-util.d.cts +36 -0
  70. package/dist/assertion/impl/assertion-util.d.cts.map +1 -0
  71. package/dist/assertion/impl/assertion-util.d.ts +36 -0
  72. package/dist/assertion/impl/assertion-util.d.ts.map +1 -0
  73. package/dist/assertion/impl/assertion-util.js +62 -0
  74. package/dist/assertion/impl/assertion-util.js.map +1 -0
  75. package/dist/assertion/impl/async-iterable.cjs +627 -0
  76. package/dist/assertion/impl/async-iterable.cjs.map +1 -0
  77. package/dist/assertion/impl/async-iterable.d.cts +406 -0
  78. package/dist/assertion/impl/async-iterable.d.cts.map +1 -0
  79. package/dist/assertion/impl/async-iterable.d.ts +406 -0
  80. package/dist/assertion/impl/async-iterable.d.ts.map +1 -0
  81. package/dist/assertion/impl/async-iterable.js +624 -0
  82. package/dist/assertion/impl/async-iterable.js.map +1 -0
  83. package/dist/assertion/impl/async-parametric.cjs +412 -0
  84. package/dist/assertion/impl/async-parametric.cjs.map +1 -0
  85. package/dist/assertion/impl/async-parametric.d.cts +278 -0
  86. package/dist/assertion/impl/async-parametric.d.cts.map +1 -0
  87. package/dist/assertion/impl/async-parametric.d.ts +278 -0
  88. package/dist/assertion/impl/async-parametric.d.ts.map +1 -0
  89. package/dist/assertion/impl/async-parametric.js +409 -0
  90. package/dist/assertion/impl/async-parametric.js.map +1 -0
  91. package/dist/assertion/impl/async.cjs +56 -0
  92. package/dist/assertion/impl/async.cjs.map +1 -0
  93. package/dist/assertion/impl/async.d.cts +179 -0
  94. package/dist/assertion/impl/async.d.cts.map +1 -0
  95. package/dist/assertion/impl/async.d.ts +179 -0
  96. package/dist/assertion/impl/async.d.ts.map +1 -0
  97. package/dist/assertion/impl/async.js +39 -0
  98. package/dist/assertion/impl/async.js.map +1 -0
  99. package/dist/assertion/impl/index.cjs +37 -0
  100. package/dist/assertion/impl/index.cjs.map +1 -0
  101. package/dist/assertion/impl/index.d.cts +21 -0
  102. package/dist/assertion/impl/index.d.cts.map +1 -0
  103. package/dist/assertion/impl/index.d.ts +21 -0
  104. package/dist/assertion/impl/index.d.ts.map +1 -0
  105. package/dist/assertion/impl/index.js +21 -0
  106. package/dist/assertion/impl/index.js.map +1 -0
  107. package/dist/assertion/impl/iteration-util.cjs +297 -0
  108. package/dist/assertion/impl/iteration-util.cjs.map +1 -0
  109. package/dist/assertion/impl/iteration-util.d.cts +12 -0
  110. package/dist/assertion/impl/iteration-util.d.cts.map +1 -0
  111. package/dist/assertion/impl/iteration-util.d.ts +12 -0
  112. package/dist/assertion/impl/iteration-util.d.ts.map +1 -0
  113. package/dist/assertion/impl/iteration-util.js +282 -0
  114. package/dist/assertion/impl/iteration-util.js.map +1 -0
  115. package/dist/assertion/impl/snapshot.cjs +276 -0
  116. package/dist/assertion/impl/snapshot.cjs.map +1 -0
  117. package/dist/assertion/impl/snapshot.d.cts +278 -0
  118. package/dist/assertion/impl/snapshot.d.cts.map +1 -0
  119. package/dist/assertion/impl/snapshot.d.ts +278 -0
  120. package/dist/assertion/impl/snapshot.d.ts.map +1 -0
  121. package/dist/assertion/impl/snapshot.js +273 -0
  122. package/dist/assertion/impl/snapshot.js.map +1 -0
  123. package/dist/assertion/impl/sync-basic.cjs +553 -0
  124. package/dist/assertion/impl/sync-basic.cjs.map +1 -0
  125. package/dist/assertion/impl/sync-basic.d.cts +528 -0
  126. package/dist/assertion/impl/sync-basic.d.cts.map +1 -0
  127. package/dist/assertion/impl/sync-basic.d.ts +528 -0
  128. package/dist/assertion/impl/sync-basic.d.ts.map +1 -0
  129. package/dist/assertion/impl/sync-basic.js +550 -0
  130. package/dist/assertion/impl/sync-basic.js.map +1 -0
  131. package/dist/assertion/impl/sync-collection.cjs +1424 -0
  132. package/dist/assertion/impl/sync-collection.cjs.map +1 -0
  133. package/dist/assertion/impl/sync-collection.d.cts +922 -0
  134. package/dist/assertion/impl/sync-collection.d.cts.map +1 -0
  135. package/dist/assertion/impl/sync-collection.d.ts +922 -0
  136. package/dist/assertion/impl/sync-collection.d.ts.map +1 -0
  137. package/dist/assertion/impl/sync-collection.js +1418 -0
  138. package/dist/assertion/impl/sync-collection.js.map +1 -0
  139. package/dist/assertion/impl/sync-date.cjs +341 -0
  140. package/dist/assertion/impl/sync-date.cjs.map +1 -0
  141. package/dist/assertion/impl/sync-date.d.cts +209 -0
  142. package/dist/assertion/impl/sync-date.d.cts.map +1 -0
  143. package/dist/assertion/impl/sync-date.d.ts +209 -0
  144. package/dist/assertion/impl/sync-date.d.ts.map +1 -0
  145. package/dist/assertion/impl/sync-date.js +338 -0
  146. package/dist/assertion/impl/sync-date.js.map +1 -0
  147. package/dist/assertion/impl/sync-esoteric.cjs +214 -0
  148. package/dist/assertion/impl/sync-esoteric.cjs.map +1 -0
  149. package/dist/assertion/impl/sync-esoteric.d.cts +191 -0
  150. package/dist/assertion/impl/sync-esoteric.d.cts.map +1 -0
  151. package/dist/assertion/impl/sync-esoteric.d.ts +191 -0
  152. package/dist/assertion/impl/sync-esoteric.d.ts.map +1 -0
  153. package/dist/assertion/impl/sync-esoteric.js +211 -0
  154. package/dist/assertion/impl/sync-esoteric.js.map +1 -0
  155. package/dist/assertion/impl/sync-iterable.cjs +512 -0
  156. package/dist/assertion/impl/sync-iterable.cjs.map +1 -0
  157. package/dist/assertion/impl/sync-iterable.d.cts +334 -0
  158. package/dist/assertion/impl/sync-iterable.d.cts.map +1 -0
  159. package/dist/assertion/impl/sync-iterable.d.ts +334 -0
  160. package/dist/assertion/impl/sync-iterable.d.ts.map +1 -0
  161. package/dist/assertion/impl/sync-iterable.js +509 -0
  162. package/dist/assertion/impl/sync-iterable.js.map +1 -0
  163. package/dist/assertion/impl/sync-parametric.cjs +805 -0
  164. package/dist/assertion/impl/sync-parametric.cjs.map +1 -0
  165. package/dist/assertion/impl/sync-parametric.d.cts +560 -0
  166. package/dist/assertion/impl/sync-parametric.d.cts.map +1 -0
  167. package/dist/assertion/impl/sync-parametric.d.ts +560 -0
  168. package/dist/assertion/impl/sync-parametric.d.ts.map +1 -0
  169. package/dist/assertion/impl/sync-parametric.js +802 -0
  170. package/dist/assertion/impl/sync-parametric.js.map +1 -0
  171. package/dist/assertion/impl/sync.cjs +229 -0
  172. package/dist/assertion/impl/sync.cjs.map +1 -0
  173. package/dist/assertion/impl/sync.d.cts +536 -0
  174. package/dist/assertion/impl/sync.d.cts.map +1 -0
  175. package/dist/assertion/impl/sync.d.ts +536 -0
  176. package/dist/assertion/impl/sync.d.ts.map +1 -0
  177. package/dist/assertion/impl/sync.js +212 -0
  178. package/dist/assertion/impl/sync.js.map +1 -0
  179. package/dist/assertion/index.cjs +38 -0
  180. package/dist/assertion/index.cjs.map +1 -0
  181. package/dist/assertion/index.d.cts +18 -0
  182. package/dist/assertion/index.d.cts.map +1 -0
  183. package/dist/assertion/index.d.ts +18 -0
  184. package/dist/assertion/index.d.ts.map +1 -0
  185. package/dist/assertion/index.js +17 -0
  186. package/dist/assertion/index.js.map +1 -0
  187. package/dist/assertion/slotify.cjs +165 -0
  188. package/dist/assertion/slotify.cjs.map +1 -0
  189. package/dist/assertion/slotify.d.cts +11 -0
  190. package/dist/assertion/slotify.d.cts.map +1 -0
  191. package/dist/assertion/slotify.d.ts +11 -0
  192. package/dist/assertion/slotify.d.ts.map +1 -0
  193. package/dist/assertion/slotify.js +161 -0
  194. package/dist/assertion/slotify.js.map +1 -0
  195. package/dist/bootstrap.cjs +43 -0
  196. package/dist/bootstrap.cjs.map +1 -0
  197. package/dist/bootstrap.d.cts +27 -0
  198. package/dist/bootstrap.d.cts.map +1 -0
  199. package/dist/bootstrap.d.ts +27 -0
  200. package/dist/bootstrap.d.ts.map +1 -0
  201. package/dist/bootstrap.js +40 -0
  202. package/dist/bootstrap.js.map +1 -0
  203. package/dist/constant.cjs +82 -0
  204. package/dist/constant.cjs.map +1 -0
  205. package/dist/constant.d.cts +69 -0
  206. package/dist/constant.d.cts.map +1 -0
  207. package/dist/constant.d.ts +69 -0
  208. package/dist/constant.d.ts.map +1 -0
  209. package/dist/constant.js +79 -0
  210. package/dist/constant.js.map +1 -0
  211. package/dist/diff.cjs +340 -0
  212. package/dist/diff.cjs.map +1 -0
  213. package/dist/diff.d.cts +51 -0
  214. package/dist/diff.d.cts.map +1 -0
  215. package/dist/diff.d.ts +51 -0
  216. package/dist/diff.d.ts.map +1 -0
  217. package/dist/diff.js +334 -0
  218. package/dist/diff.js.map +1 -0
  219. package/dist/error.cjs +194 -0
  220. package/dist/error.cjs.map +1 -0
  221. package/dist/error.d.cts +212 -0
  222. package/dist/error.d.cts.map +1 -0
  223. package/dist/error.d.ts +212 -0
  224. package/dist/error.d.ts.map +1 -0
  225. package/dist/error.js +181 -0
  226. package/dist/error.js.map +1 -0
  227. package/dist/expect.cjs +587 -0
  228. package/dist/expect.cjs.map +1 -0
  229. package/dist/expect.d.cts +138 -0
  230. package/dist/expect.d.cts.map +1 -0
  231. package/dist/expect.d.ts +138 -0
  232. package/dist/expect.d.ts.map +1 -0
  233. package/dist/expect.js +582 -0
  234. package/dist/expect.js.map +1 -0
  235. package/dist/guards.cjs +291 -0
  236. package/dist/guards.cjs.map +1 -0
  237. package/dist/guards.d.cts +225 -0
  238. package/dist/guards.d.cts.map +1 -0
  239. package/dist/guards.d.ts +225 -0
  240. package/dist/guards.d.ts.map +1 -0
  241. package/dist/guards.js +273 -0
  242. package/dist/guards.js.map +1 -0
  243. package/dist/index.cjs +111 -0
  244. package/dist/index.cjs.map +1 -0
  245. package/dist/index.d.cts +460 -0
  246. package/dist/index.d.cts.map +1 -0
  247. package/dist/index.d.ts +460 -0
  248. package/dist/index.d.ts.map +1 -0
  249. package/dist/index.js +71 -0
  250. package/dist/index.js.map +1 -0
  251. package/dist/internal-schema.cjs +234 -0
  252. package/dist/internal-schema.cjs.map +1 -0
  253. package/dist/internal-schema.d.cts +8 -0
  254. package/dist/internal-schema.d.cts.map +1 -0
  255. package/dist/internal-schema.d.ts +8 -0
  256. package/dist/internal-schema.d.ts.map +1 -0
  257. package/dist/internal-schema.js +229 -0
  258. package/dist/internal-schema.js.map +1 -0
  259. package/dist/metadata.cjs +57 -0
  260. package/dist/metadata.cjs.map +1 -0
  261. package/dist/metadata.d.cts +27 -0
  262. package/dist/metadata.d.cts.map +1 -0
  263. package/dist/metadata.d.ts +27 -0
  264. package/dist/metadata.d.ts.map +1 -0
  265. package/dist/metadata.js +54 -0
  266. package/dist/metadata.js.map +1 -0
  267. package/dist/schema.cjs +1522 -0
  268. package/dist/schema.cjs.map +1 -0
  269. package/dist/schema.d.cts +1196 -0
  270. package/dist/schema.d.cts.map +1 -0
  271. package/dist/schema.d.ts +1196 -0
  272. package/dist/schema.d.ts.map +1 -0
  273. package/dist/schema.js +1516 -0
  274. package/dist/schema.js.map +1 -0
  275. package/dist/snapshot/adapter.cjs +29 -0
  276. package/dist/snapshot/adapter.cjs.map +1 -0
  277. package/dist/snapshot/adapter.d.cts +258 -0
  278. package/dist/snapshot/adapter.d.cts.map +1 -0
  279. package/dist/snapshot/adapter.d.ts +258 -0
  280. package/dist/snapshot/adapter.d.ts.map +1 -0
  281. package/dist/snapshot/adapter.js +25 -0
  282. package/dist/snapshot/adapter.js.map +1 -0
  283. package/dist/snapshot/adapters/fallback.cjs +452 -0
  284. package/dist/snapshot/adapters/fallback.cjs.map +1 -0
  285. package/dist/snapshot/adapters/fallback.d.cts +185 -0
  286. package/dist/snapshot/adapters/fallback.d.cts.map +1 -0
  287. package/dist/snapshot/adapters/fallback.d.ts +185 -0
  288. package/dist/snapshot/adapters/fallback.d.ts.map +1 -0
  289. package/dist/snapshot/adapters/fallback.js +445 -0
  290. package/dist/snapshot/adapters/fallback.js.map +1 -0
  291. package/dist/snapshot/adapters/node-test.cjs +297 -0
  292. package/dist/snapshot/adapters/node-test.cjs.map +1 -0
  293. package/dist/snapshot/adapters/node-test.d.cts +131 -0
  294. package/dist/snapshot/adapters/node-test.d.cts.map +1 -0
  295. package/dist/snapshot/adapters/node-test.d.ts +131 -0
  296. package/dist/snapshot/adapters/node-test.d.ts.map +1 -0
  297. package/dist/snapshot/adapters/node-test.js +293 -0
  298. package/dist/snapshot/adapters/node-test.js.map +1 -0
  299. package/dist/snapshot/index.cjs +61 -0
  300. package/dist/snapshot/index.cjs.map +1 -0
  301. package/dist/snapshot/index.d.cts +40 -0
  302. package/dist/snapshot/index.d.cts.map +1 -0
  303. package/dist/snapshot/index.d.ts +40 -0
  304. package/dist/snapshot/index.d.ts.map +1 -0
  305. package/dist/snapshot/index.js +44 -0
  306. package/dist/snapshot/index.js.map +1 -0
  307. package/dist/snapshot/node-version.cjs +49 -0
  308. package/dist/snapshot/node-version.cjs.map +1 -0
  309. package/dist/snapshot/node-version.d.cts +34 -0
  310. package/dist/snapshot/node-version.d.cts.map +1 -0
  311. package/dist/snapshot/node-version.d.ts +34 -0
  312. package/dist/snapshot/node-version.d.ts.map +1 -0
  313. package/dist/snapshot/node-version.js +44 -0
  314. package/dist/snapshot/node-version.js.map +1 -0
  315. package/dist/snapshot/select-adapter.cjs +170 -0
  316. package/dist/snapshot/select-adapter.cjs.map +1 -0
  317. package/dist/snapshot/select-adapter.d.cts +128 -0
  318. package/dist/snapshot/select-adapter.d.cts.map +1 -0
  319. package/dist/snapshot/select-adapter.d.ts +128 -0
  320. package/dist/snapshot/select-adapter.d.ts.map +1 -0
  321. package/dist/snapshot/select-adapter.js +164 -0
  322. package/dist/snapshot/select-adapter.js.map +1 -0
  323. package/dist/snapshot/serializer.cjs +245 -0
  324. package/dist/snapshot/serializer.cjs.map +1 -0
  325. package/dist/snapshot/serializer.d.cts +126 -0
  326. package/dist/snapshot/serializer.d.cts.map +1 -0
  327. package/dist/snapshot/serializer.d.ts +126 -0
  328. package/dist/snapshot/serializer.d.ts.map +1 -0
  329. package/dist/snapshot/serializer.js +237 -0
  330. package/dist/snapshot/serializer.js.map +1 -0
  331. package/dist/standard-schema.cjs +13 -0
  332. package/dist/standard-schema.cjs.map +1 -0
  333. package/dist/standard-schema.d.cts +192 -0
  334. package/dist/standard-schema.d.cts.map +1 -0
  335. package/dist/standard-schema.d.ts +192 -0
  336. package/dist/standard-schema.d.ts.map +1 -0
  337. package/dist/standard-schema.js +12 -0
  338. package/dist/standard-schema.js.map +1 -0
  339. package/dist/types.cjs +22 -0
  340. package/dist/types.cjs.map +1 -0
  341. package/dist/types.d.cts +756 -0
  342. package/dist/types.d.cts.map +1 -0
  343. package/dist/types.d.ts +756 -0
  344. package/dist/types.d.ts.map +1 -0
  345. package/dist/types.js +21 -0
  346. package/dist/types.js.map +1 -0
  347. package/dist/use.cjs +240 -0
  348. package/dist/use.cjs.map +1 -0
  349. package/dist/use.d.cts +8 -0
  350. package/dist/use.d.cts.map +1 -0
  351. package/dist/use.d.ts +8 -0
  352. package/dist/use.d.ts.map +1 -0
  353. package/dist/use.js +236 -0
  354. package/dist/use.js.map +1 -0
  355. package/dist/util.cjs +255 -0
  356. package/dist/util.cjs.map +1 -0
  357. package/dist/util.d.cts +141 -0
  358. package/dist/util.d.cts.map +1 -0
  359. package/dist/util.d.ts +141 -0
  360. package/dist/util.d.ts.map +1 -0
  361. package/dist/util.js +234 -0
  362. package/dist/util.js.map +1 -0
  363. package/dist/value-to-schema.cjs +537 -0
  364. package/dist/value-to-schema.cjs.map +1 -0
  365. package/dist/value-to-schema.d.cts +144 -0
  366. package/dist/value-to-schema.d.cts.map +1 -0
  367. package/dist/value-to-schema.d.ts +144 -0
  368. package/dist/value-to-schema.d.ts.map +1 -0
  369. package/dist/value-to-schema.js +533 -0
  370. package/dist/value-to-schema.js.map +1 -0
  371. package/package.json +22 -19
  372. package/src/assertion/assertion-types.ts +4 -8
  373. package/src/assertion/assertion.ts +1 -1
  374. package/src/assertion/format-assertion-failure.ts +2 -0
  375. package/src/assertion/impl/assertion-util.ts +1 -2
  376. package/src/assertion/impl/iteration-util.ts +1 -3
  377. package/src/assertion/impl/sync-collection.ts +633 -7
  378. package/src/assertion/impl/sync.ts +27 -0
  379. package/src/error.ts +13 -22
  380. package/src/guards.ts +8 -14
  381. package/src/internal-schema.ts +4 -8
  382. package/src/metadata.ts +1 -2
  383. package/src/snapshot/adapter.ts +2 -3
  384. package/src/snapshot/adapters/fallback.ts +2 -3
  385. package/src/snapshot/adapters/node-test.ts +14 -20
  386. package/src/snapshot/select-adapter.ts +3 -3
  387. package/src/snapshot/serializer.ts +2 -3
  388. package/src/types.ts +2 -162
package/dist/util.cjs ADDED
@@ -0,0 +1,255 @@
1
+ "use strict";
2
+ /**
3
+ * Utility functions.
4
+ *
5
+ * @module util
6
+ * @category API
7
+ * @example
8
+ *
9
+ * ```ts
10
+ * import * as util from 'bupkis/util';
11
+ * ```
12
+ */
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
25
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.parseKeypath = exports.keyBy = exports.has = exports.get = void 0;
29
+ __exportStar(require("./value-to-schema.cjs"), exports);
30
+ const { isInteger, isNaN } = Number;
31
+ /**
32
+ * Retrieves the value at a given keypath from an object using dot or bracket
33
+ * notation.
34
+ *
35
+ * Supports keypaths like:
36
+ *
37
+ * - `'foo.bar'` - dot notation
38
+ * - `'foo[1].spam'` - bracket notation with array indices
39
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
40
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
41
+ *
42
+ * This function cannot retrieve values associated with symbol keys.
43
+ *
44
+ * @example
45
+ *
46
+ * ```ts
47
+ * const obj = {
48
+ * foo: {
49
+ * bar: 'hello',
50
+ * 'bar-baz': { quux: 'world' },
51
+ * },
52
+ * arr: [{ spam: 'eggs' }],
53
+ * };
54
+ *
55
+ * get(obj, 'foo.bar');
56
+ * get(obj, 'arr[0].spam');
57
+ * get(obj, 'foo["bar-baz"].quux');
58
+ * get(obj, 'foo.nonexistent');
59
+ * get(obj, 'foo.nonexistent', 'default');
60
+ * ```
61
+ *
62
+ * @function
63
+ * @param obj The object to retrieve the value from
64
+ * @param keypath The keypath using dot or bracket notation
65
+ * @param defaultValue Optional default value to return if the keypath is not
66
+ * found
67
+ * @returns The value at the keypath, or defaultValue if not found
68
+ */
69
+ const get = (obj, keypath, defaultValue) => {
70
+ if (typeof obj !== 'object' || obj === null || typeof keypath !== 'string') {
71
+ return defaultValue;
72
+ }
73
+ const keys = (0, exports.parseKeypath)(keypath);
74
+ if (keys.length === 0) {
75
+ return defaultValue;
76
+ }
77
+ let current = obj;
78
+ for (const key of keys) {
79
+ if (current == null || typeof current !== 'object') {
80
+ return defaultValue;
81
+ }
82
+ const currentObj = current;
83
+ if (!(key in currentObj)) {
84
+ return defaultValue;
85
+ }
86
+ current = currentObj[key];
87
+ }
88
+ return current;
89
+ };
90
+ exports.get = get;
91
+ /**
92
+ * Returns whether a value exists at a given keypath within an object using dot
93
+ * or bracket notation.
94
+ *
95
+ * Supports keypaths like:
96
+ *
97
+ * - `'foo.bar'` - dot notation
98
+ * - `'foo[1].spam'` - bracket notation with array indices
99
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
100
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
101
+ *
102
+ * This function cannot consider values associated with symbol keys.
103
+ *
104
+ * @example
105
+ *
106
+ * ```ts
107
+ * const obj = {
108
+ * foo: {
109
+ * bar: 'hello',
110
+ * 'bar-baz': { quux: 'world' },
111
+ * },
112
+ * arr: [{ spam: 'eggs' }],
113
+ * };
114
+ *
115
+ * has(obj, 'foo.bar');
116
+ * has(obj, 'arr[0].spam');
117
+ * has(obj, 'foo["bar-baz"].quux');
118
+ * has(obj, 'foo.nonexistent');
119
+ * ```
120
+ *
121
+ * @function
122
+ * @param obj The object to examine the value from
123
+ * @param keypath The keypath using dot or bracket notation
124
+ * @returns `true` if the keypath exists, `false` otherwise
125
+ */
126
+ const has = (obj, keypath) => {
127
+ if (typeof obj !== 'object' || obj === null || typeof keypath !== 'string') {
128
+ return false;
129
+ }
130
+ const keys = (0, exports.parseKeypath)(keypath);
131
+ if (keys.length === 0) {
132
+ return false;
133
+ }
134
+ let current = obj;
135
+ for (const key of keys) {
136
+ if (current == null || typeof current !== 'object') {
137
+ return false;
138
+ }
139
+ const currentObj = current;
140
+ if (!(key in currentObj)) {
141
+ return false;
142
+ }
143
+ current = currentObj[key];
144
+ }
145
+ return true;
146
+ };
147
+ exports.has = has;
148
+ /**
149
+ * Maps an array of objects to an object keyed by the specified key.
150
+ *
151
+ * @function
152
+ * @param collection Array of objects
153
+ * @param key Name of key
154
+ * @returns Object mapping key values to objects
155
+ */
156
+ const keyBy = (collection, key) => {
157
+ const result = {};
158
+ for (const item of collection) {
159
+ const keyValue = item[key];
160
+ if (typeof keyValue === 'string' ||
161
+ typeof keyValue === 'number' ||
162
+ typeof keyValue === 'symbol') {
163
+ result[String(keyValue)] = item;
164
+ }
165
+ }
166
+ return result;
167
+ };
168
+ exports.keyBy = keyBy;
169
+ /**
170
+ * Parses a keypath string into an array of individual keys, supporting dot and
171
+ * bracket notation.
172
+ *
173
+ * Parsing rules:
174
+ *
175
+ * - Dot notation: Splits keys by `.` (e.g., `'foo.bar'` → `['foo', 'bar']`).
176
+ * - Bracket notation: Extracts keys inside `[]`. If the key is a quoted string
177
+ * (single or double quotes), the quotes are removed (e.g., `'foo["bar-baz"]'`
178
+ * → `['foo', 'bar-baz']`). If the key is an integer (e.g., `'foo[0]'`), it is
179
+ * parsed as a number.
180
+ * - Mixed notation: Supports combinations (e.g., `'foo.bar[0].baz'` → `['foo',
181
+ * 'bar', 0, 'baz']`).
182
+ * - Quoted keys: Keys inside brackets can be quoted with single or double quotes.
183
+ * Quotes are stripped, and the content is used as the key.
184
+ * - Numeric keys: If a bracketed key is an integer, it is returned as a number;
185
+ * otherwise, as a string.
186
+ * - Whitespace inside brackets is preserved as part of the key.
187
+ * - Does not support escape sequences inside quotes.
188
+ *
189
+ * Limitations:
190
+ *
191
+ * - Does not support symbol keys.
192
+ * - Does not handle escape characters inside quoted keys.
193
+ *
194
+ * @example
195
+ *
196
+ * ```ts
197
+ * parseKeypath('foo.bar'); // ['foo', 'bar']
198
+ * parseKeypath('foo[0].baz'); // ['foo', 0, 'baz']
199
+ * parseKeypath('foo["bar-baz"].quux'); // ['foo', 'bar-baz', 'quux']
200
+ * parseKeypath("foo['bar-baz'].quux"); // ['foo', 'bar-baz', 'quux']
201
+ * parseKeypath("arr[10]['spam']"); // ['arr', 10, 'spam']
202
+ * ```
203
+ *
204
+ * @function
205
+ * @param keypath The keypath string to parse, using dot and/or bracket
206
+ * notation.
207
+ * @returns An array of keys, where each key is a string or number. Bracketed
208
+ * integer keys are returned as numbers; all others as strings.
209
+ */
210
+ const parseKeypath = (keypath) => {
211
+ const keys = [];
212
+ let i = 0;
213
+ while (i < keypath.length) {
214
+ if (keypath[i] === '[') {
215
+ i++;
216
+ let key = '';
217
+ let inQuotes = false;
218
+ let quoteChar = '';
219
+ while (i < keypath.length && (keypath[i] !== ']' || inQuotes)) {
220
+ const char = keypath[i];
221
+ if (!inQuotes && (char === '"' || char === "'")) {
222
+ inQuotes = true;
223
+ quoteChar = char;
224
+ }
225
+ else if (inQuotes && char === quoteChar) {
226
+ inQuotes = false;
227
+ quoteChar = '';
228
+ }
229
+ else {
230
+ key += char;
231
+ }
232
+ i++;
233
+ }
234
+ i++;
235
+ const numKey = Number(key);
236
+ keys.push(isInteger(numKey) && !isNaN(numKey) ? numKey : key);
237
+ }
238
+ else if (keypath[i] === '.') {
239
+ i++;
240
+ }
241
+ else {
242
+ let key = '';
243
+ while (i < keypath.length && keypath[i] !== '.' && keypath[i] !== '[') {
244
+ key += keypath[i];
245
+ i++;
246
+ }
247
+ if (key) {
248
+ keys.push(key);
249
+ }
250
+ }
251
+ }
252
+ return keys;
253
+ };
254
+ exports.parseKeypath = parseKeypath;
255
+ //# sourceMappingURL=util.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util.js","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;;AAMH,wDAAqC;AAErC,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,MAAM,CAAC;AAEpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACI,MAAM,GAAG,GAAG,CACjB,GAAY,EACZ,OAAgB,EAChB,YAAgB,EACD,EAAE;IACjB,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;QAC3E,OAAO,YAAY,CAAC;IACtB,CAAC;IAED,MAAM,IAAI,GAAG,IAAA,oBAAY,EAAC,OAAO,CAAC,CAAC;IAEnC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACtB,OAAO,YAAY,CAAC;IACtB,CAAC;IAED,IAAI,OAAO,GAAY,GAAG,CAAC;IAE3B,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;QACvB,IAAI,OAAO,IAAI,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;YACnD,OAAO,YAAY,CAAC;QACtB,CAAC;QAED,MAAM,UAAU,GAAG,OAAuC,CAAC;QAE3D,IAAI,CAAC,CAAC,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC;YACzB,OAAO,YAAY,CAAC;QACtB,CAAC;QAED,OAAO,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;IAC5B,CAAC;IAED,OAAO,OAAY,CAAC;AACtB,CAAC,CAAC;AAhCW,QAAA,GAAG,OAgCd;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACI,MAAM,GAAG,GAAG,CAAC,GAAY,EAAE,OAAgB,EAAW,EAAE;IAC7D,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,GAAG,KAAK,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;QAC3E,OAAO,KAAK,CAAC;IACf,CAAC;IAED,MAAM,IAAI,GAAG,IAAA,oBAAY,EAAC,OAAO,CAAC,CAAC;IAEnC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACtB,OAAO,KAAK,CAAC;IACf,CAAC;IAED,IAAI,OAAO,GAAY,GAAG,CAAC;IAE3B,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;QACvB,IAAI,OAAO,IAAI,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE,CAAC;YACnD,OAAO,KAAK,CAAC;QACf,CAAC;QAED,MAAM,UAAU,GAAG,OAAuC,CAAC;QAE3D,IAAI,CAAC,CAAC,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC;YACzB,OAAO,KAAK,CAAC;QACf,CAAC;QACD,OAAO,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;IAC5B,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AA3BW,QAAA,GAAG,OA2Bd;AAEF;;;;;;;GAOG;AACI,MAAM,KAAK,GAAG,CAInB,UAAa,EACb,GAAM,EACqB,EAAE;IAC7B,MAAM,MAAM,GAAG,EAA+B,CAAC;IAE/C,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE,CAAC;QAC9B,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QAC3B,IACE,OAAO,QAAQ,KAAK,QAAQ;YAC5B,OAAO,QAAQ,KAAK,QAAQ;YAC5B,OAAO,QAAQ,KAAK,QAAQ,EAC5B,CAAC;YACD,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC;QAClC,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AArBW,QAAA,KAAK,SAqBhB;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACI,MAAM,YAAY,GAAG,CAC1B,OAAmB,EACE,EAAE;IACvB,MAAM,IAAI,GAAwB,EAAE,CAAC;IACrC,IAAI,CAAC,GAAG,CAAC,CAAC;IAEV,OAAO,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;QAC1B,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC;YACvB,CAAC,EAAE,CAAC;YACJ,IAAI,GAAG,GAAG,EAAE,CAAC;YACb,IAAI,QAAQ,GAAG,KAAK,CAAC;YACrB,IAAI,SAAS,GAAG,EAAE,CAAC;YAEnB,OAAO,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,QAAQ,CAAC,EAAE,CAAC;gBAC9D,MAAM,IAAI,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;gBAExB,IAAI,CAAC,QAAQ,IAAI,CAAC,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE,CAAC;oBAChD,QAAQ,GAAG,IAAI,CAAC;oBAChB,SAAS,GAAG,IAAI,CAAC;gBACnB,CAAC;qBAAM,IAAI,QAAQ,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;oBAC1C,QAAQ,GAAG,KAAK,CAAC;oBACjB,SAAS,GAAG,EAAE,CAAC;gBACjB,CAAC;qBAAM,CAAC;oBACN,GAAG,IAAI,IAAI,CAAC;gBACd,CAAC;gBAED,CAAC,EAAE,CAAC;YACN,CAAC;YAED,CAAC,EAAE,CAAC;YAEJ,MAAM,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;YAC3B,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAChE,CAAC;aAAM,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC;YAC9B,CAAC,EAAE,CAAC;QACN,CAAC;aAAM,CAAC;YACN,IAAI,GAAG,GAAG,EAAE,CAAC;YAEb,OAAO,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC;gBACtE,GAAG,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;gBAClB,CAAC,EAAE,CAAC;YACN,CAAC;YAED,IAAI,GAAG,EAAE,CAAC;gBACR,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACjB,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAlDW,QAAA,YAAY,gBAkDvB"}
@@ -0,0 +1,141 @@
1
+ /**
2
+ * Utility functions.
3
+ *
4
+ * @module util
5
+ * @category API
6
+ * @example
7
+ *
8
+ * ```ts
9
+ * import * as util from 'bupkis/util';
10
+ * ```
11
+ */
12
+ import { type StringKeyOf } from 'type-fest';
13
+ import { type Keypath } from "./types.cjs";
14
+ export * from "./value-to-schema.cjs";
15
+ /**
16
+ * Retrieves the value at a given keypath from an object using dot or bracket
17
+ * notation.
18
+ *
19
+ * Supports keypaths like:
20
+ *
21
+ * - `'foo.bar'` - dot notation
22
+ * - `'foo[1].spam'` - bracket notation with array indices
23
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
24
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
25
+ *
26
+ * This function cannot retrieve values associated with symbol keys.
27
+ *
28
+ * @example
29
+ *
30
+ * ```ts
31
+ * const obj = {
32
+ * foo: {
33
+ * bar: 'hello',
34
+ * 'bar-baz': { quux: 'world' },
35
+ * },
36
+ * arr: [{ spam: 'eggs' }],
37
+ * };
38
+ *
39
+ * get(obj, 'foo.bar');
40
+ * get(obj, 'arr[0].spam');
41
+ * get(obj, 'foo["bar-baz"].quux');
42
+ * get(obj, 'foo.nonexistent');
43
+ * get(obj, 'foo.nonexistent', 'default');
44
+ * ```
45
+ *
46
+ * @function
47
+ * @param obj The object to retrieve the value from
48
+ * @param keypath The keypath using dot or bracket notation
49
+ * @param defaultValue Optional default value to return if the keypath is not
50
+ * found
51
+ * @returns The value at the keypath, or defaultValue if not found
52
+ */
53
+ export declare const get: <T = unknown>(obj: unknown, keypath: Keypath, defaultValue?: T) => T | undefined;
54
+ /**
55
+ * Returns whether a value exists at a given keypath within an object using dot
56
+ * or bracket notation.
57
+ *
58
+ * Supports keypaths like:
59
+ *
60
+ * - `'foo.bar'` - dot notation
61
+ * - `'foo[1].spam'` - bracket notation with array indices
62
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
63
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
64
+ *
65
+ * This function cannot consider values associated with symbol keys.
66
+ *
67
+ * @example
68
+ *
69
+ * ```ts
70
+ * const obj = {
71
+ * foo: {
72
+ * bar: 'hello',
73
+ * 'bar-baz': { quux: 'world' },
74
+ * },
75
+ * arr: [{ spam: 'eggs' }],
76
+ * };
77
+ *
78
+ * has(obj, 'foo.bar');
79
+ * has(obj, 'arr[0].spam');
80
+ * has(obj, 'foo["bar-baz"].quux');
81
+ * has(obj, 'foo.nonexistent');
82
+ * ```
83
+ *
84
+ * @function
85
+ * @param obj The object to examine the value from
86
+ * @param keypath The keypath using dot or bracket notation
87
+ * @returns `true` if the keypath exists, `false` otherwise
88
+ */
89
+ export declare const has: (obj: unknown, keypath: Keypath) => boolean;
90
+ /**
91
+ * Maps an array of objects to an object keyed by the specified key.
92
+ *
93
+ * @function
94
+ * @param collection Array of objects
95
+ * @param key Name of key
96
+ * @returns Object mapping key values to objects
97
+ */
98
+ export declare const keyBy: <const T extends readonly Record<PropertyKey, any>[], K extends StringKeyOf<T[number]>>(collection: T, key: K) => Record<string, T[number]>;
99
+ /**
100
+ * Parses a keypath string into an array of individual keys, supporting dot and
101
+ * bracket notation.
102
+ *
103
+ * Parsing rules:
104
+ *
105
+ * - Dot notation: Splits keys by `.` (e.g., `'foo.bar'` → `['foo', 'bar']`).
106
+ * - Bracket notation: Extracts keys inside `[]`. If the key is a quoted string
107
+ * (single or double quotes), the quotes are removed (e.g., `'foo["bar-baz"]'`
108
+ * → `['foo', 'bar-baz']`). If the key is an integer (e.g., `'foo[0]'`), it is
109
+ * parsed as a number.
110
+ * - Mixed notation: Supports combinations (e.g., `'foo.bar[0].baz'` → `['foo',
111
+ * 'bar', 0, 'baz']`).
112
+ * - Quoted keys: Keys inside brackets can be quoted with single or double quotes.
113
+ * Quotes are stripped, and the content is used as the key.
114
+ * - Numeric keys: If a bracketed key is an integer, it is returned as a number;
115
+ * otherwise, as a string.
116
+ * - Whitespace inside brackets is preserved as part of the key.
117
+ * - Does not support escape sequences inside quotes.
118
+ *
119
+ * Limitations:
120
+ *
121
+ * - Does not support symbol keys.
122
+ * - Does not handle escape characters inside quoted keys.
123
+ *
124
+ * @example
125
+ *
126
+ * ```ts
127
+ * parseKeypath('foo.bar'); // ['foo', 'bar']
128
+ * parseKeypath('foo[0].baz'); // ['foo', 0, 'baz']
129
+ * parseKeypath('foo["bar-baz"].quux'); // ['foo', 'bar-baz', 'quux']
130
+ * parseKeypath("foo['bar-baz'].quux"); // ['foo', 'bar-baz', 'quux']
131
+ * parseKeypath("arr[10]['spam']"); // ['arr', 10, 'spam']
132
+ * ```
133
+ *
134
+ * @function
135
+ * @param keypath The keypath string to parse, using dot and/or bracket
136
+ * notation.
137
+ * @returns An array of keys, where each key is a string or number. Bracketed
138
+ * integer keys are returned as numbers; all others as strings.
139
+ */
140
+ export declare const parseKeypath: <S extends string = string>(keypath: Keypath<S>) => (number | string)[];
141
+ //# sourceMappingURL=util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,KAAK,OAAO,EAAE,oBAAmB;AAE1C,sCAAqC;AAIrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,eAAO,MAAM,GAAG,GAAI,CAAC,GAAG,OAAO,EAC7B,KAAK,OAAO,EACZ,SAAS,OAAO,EAChB,eAAe,CAAC,KACf,CAAC,GAAG,SA4BN,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,eAAO,MAAM,GAAG,GAAI,KAAK,OAAO,EAAE,SAAS,OAAO,KAAG,OA2BpD,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK,GAChB,KAAK,CAAC,CAAC,SAAS,SAAS,MAAM,CAAC,WAAW,EAAE,GAAG,CAAC,EAAE,EACnD,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAEhC,YAAY,CAAC,EACb,KAAK,CAAC,KACL,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAe1B,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,eAAO,MAAM,YAAY,GAAI,CAAC,SAAS,MAAM,GAAG,MAAM,EACpD,SAAS,OAAO,CAAC,CAAC,CAAC,KAClB,CAAC,MAAM,GAAG,MAAM,CAAC,EAgDnB,CAAC"}
package/dist/util.d.ts ADDED
@@ -0,0 +1,141 @@
1
+ /**
2
+ * Utility functions.
3
+ *
4
+ * @module util
5
+ * @category API
6
+ * @example
7
+ *
8
+ * ```ts
9
+ * import * as util from 'bupkis/util';
10
+ * ```
11
+ */
12
+ import { type StringKeyOf } from 'type-fest';
13
+ import { type Keypath } from "./types.js";
14
+ export * from "./value-to-schema.js";
15
+ /**
16
+ * Retrieves the value at a given keypath from an object using dot or bracket
17
+ * notation.
18
+ *
19
+ * Supports keypaths like:
20
+ *
21
+ * - `'foo.bar'` - dot notation
22
+ * - `'foo[1].spam'` - bracket notation with array indices
23
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
24
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
25
+ *
26
+ * This function cannot retrieve values associated with symbol keys.
27
+ *
28
+ * @example
29
+ *
30
+ * ```ts
31
+ * const obj = {
32
+ * foo: {
33
+ * bar: 'hello',
34
+ * 'bar-baz': { quux: 'world' },
35
+ * },
36
+ * arr: [{ spam: 'eggs' }],
37
+ * };
38
+ *
39
+ * get(obj, 'foo.bar');
40
+ * get(obj, 'arr[0].spam');
41
+ * get(obj, 'foo["bar-baz"].quux');
42
+ * get(obj, 'foo.nonexistent');
43
+ * get(obj, 'foo.nonexistent', 'default');
44
+ * ```
45
+ *
46
+ * @function
47
+ * @param obj The object to retrieve the value from
48
+ * @param keypath The keypath using dot or bracket notation
49
+ * @param defaultValue Optional default value to return if the keypath is not
50
+ * found
51
+ * @returns The value at the keypath, or defaultValue if not found
52
+ */
53
+ export declare const get: <T = unknown>(obj: unknown, keypath: Keypath, defaultValue?: T) => T | undefined;
54
+ /**
55
+ * Returns whether a value exists at a given keypath within an object using dot
56
+ * or bracket notation.
57
+ *
58
+ * Supports keypaths like:
59
+ *
60
+ * - `'foo.bar'` - dot notation
61
+ * - `'foo[1].spam'` - bracket notation with array indices
62
+ * - `'foo["bar-baz"].quux'` - bracket notation with quoted strings
63
+ * - `"foo['bar-baz'].quux"` - bracket notation with single quotes
64
+ *
65
+ * This function cannot consider values associated with symbol keys.
66
+ *
67
+ * @example
68
+ *
69
+ * ```ts
70
+ * const obj = {
71
+ * foo: {
72
+ * bar: 'hello',
73
+ * 'bar-baz': { quux: 'world' },
74
+ * },
75
+ * arr: [{ spam: 'eggs' }],
76
+ * };
77
+ *
78
+ * has(obj, 'foo.bar');
79
+ * has(obj, 'arr[0].spam');
80
+ * has(obj, 'foo["bar-baz"].quux');
81
+ * has(obj, 'foo.nonexistent');
82
+ * ```
83
+ *
84
+ * @function
85
+ * @param obj The object to examine the value from
86
+ * @param keypath The keypath using dot or bracket notation
87
+ * @returns `true` if the keypath exists, `false` otherwise
88
+ */
89
+ export declare const has: (obj: unknown, keypath: Keypath) => boolean;
90
+ /**
91
+ * Maps an array of objects to an object keyed by the specified key.
92
+ *
93
+ * @function
94
+ * @param collection Array of objects
95
+ * @param key Name of key
96
+ * @returns Object mapping key values to objects
97
+ */
98
+ export declare const keyBy: <const T extends readonly Record<PropertyKey, any>[], K extends StringKeyOf<T[number]>>(collection: T, key: K) => Record<string, T[number]>;
99
+ /**
100
+ * Parses a keypath string into an array of individual keys, supporting dot and
101
+ * bracket notation.
102
+ *
103
+ * Parsing rules:
104
+ *
105
+ * - Dot notation: Splits keys by `.` (e.g., `'foo.bar'` → `['foo', 'bar']`).
106
+ * - Bracket notation: Extracts keys inside `[]`. If the key is a quoted string
107
+ * (single or double quotes), the quotes are removed (e.g., `'foo["bar-baz"]'`
108
+ * → `['foo', 'bar-baz']`). If the key is an integer (e.g., `'foo[0]'`), it is
109
+ * parsed as a number.
110
+ * - Mixed notation: Supports combinations (e.g., `'foo.bar[0].baz'` → `['foo',
111
+ * 'bar', 0, 'baz']`).
112
+ * - Quoted keys: Keys inside brackets can be quoted with single or double quotes.
113
+ * Quotes are stripped, and the content is used as the key.
114
+ * - Numeric keys: If a bracketed key is an integer, it is returned as a number;
115
+ * otherwise, as a string.
116
+ * - Whitespace inside brackets is preserved as part of the key.
117
+ * - Does not support escape sequences inside quotes.
118
+ *
119
+ * Limitations:
120
+ *
121
+ * - Does not support symbol keys.
122
+ * - Does not handle escape characters inside quoted keys.
123
+ *
124
+ * @example
125
+ *
126
+ * ```ts
127
+ * parseKeypath('foo.bar'); // ['foo', 'bar']
128
+ * parseKeypath('foo[0].baz'); // ['foo', 0, 'baz']
129
+ * parseKeypath('foo["bar-baz"].quux'); // ['foo', 'bar-baz', 'quux']
130
+ * parseKeypath("foo['bar-baz'].quux"); // ['foo', 'bar-baz', 'quux']
131
+ * parseKeypath("arr[10]['spam']"); // ['arr', 10, 'spam']
132
+ * ```
133
+ *
134
+ * @function
135
+ * @param keypath The keypath string to parse, using dot and/or bracket
136
+ * notation.
137
+ * @returns An array of keys, where each key is a string or number. Bracketed
138
+ * integer keys are returned as numbers; all others as strings.
139
+ */
140
+ export declare const parseKeypath: <S extends string = string>(keypath: Keypath<S>) => (number | string)[];
141
+ //# sourceMappingURL=util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,KAAK,OAAO,EAAE,mBAAmB;AAE1C,qCAAqC;AAIrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,eAAO,MAAM,GAAG,GAAI,CAAC,GAAG,OAAO,EAC7B,KAAK,OAAO,EACZ,SAAS,OAAO,EAChB,eAAe,CAAC,KACf,CAAC,GAAG,SA4BN,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,eAAO,MAAM,GAAG,GAAI,KAAK,OAAO,EAAE,SAAS,OAAO,KAAG,OA2BpD,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,KAAK,GAChB,KAAK,CAAC,CAAC,SAAS,SAAS,MAAM,CAAC,WAAW,EAAE,GAAG,CAAC,EAAE,EACnD,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAEhC,YAAY,CAAC,EACb,KAAK,CAAC,KACL,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAe1B,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,eAAO,MAAM,YAAY,GAAI,CAAC,SAAS,MAAM,GAAG,MAAM,EACpD,SAAS,OAAO,CAAC,CAAC,CAAC,KAClB,CAAC,MAAM,GAAG,MAAM,CAAC,EAgDnB,CAAC"}