Begin work on the Untyped item info

This commit is contained in:
Oliver-Akins 2024-03-20 19:07:25 -06:00
parent aa5c6d5aba
commit 80995da0aa
6 changed files with 85 additions and 17 deletions

View file

@ -20,6 +20,7 @@ export default {
// Simple helpers
"dd-stringify": v => JSON.stringify(v, null, ` `),
"dd-empty": v => v.length == 0,
"dd-set-has": (s, k) => s.has(k),
// Logic helpers
"eq": (a, b) => a == b,