This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Jason Miller
developit.dev
did:plc:3eljmo2tovydgjxpqv4xppat
PSA: never use Object.entries() (or even Object.keys() really) to create a variant/derivative of an object. Doing this is mind-bogglingly wasteful.
Iterating over object properties is literally a JS language feature (for..in), nothing will ever be as fast as just using it.
2024-12-10T03:22:05.260Z