alphagov / govuk-prototype-kit

Rapidly create HTML prototypes of GOV.UK services
https://prototype-kit.service.gov.uk
MIT License
303 stars 236 forks source link

Add format items filter to core filters #2384

Closed BenSurgisonGDS closed 9 months ago

BenSurgisonGDS commented 9 months ago

Allow users to simplify entering items when the text and value are the same.

The following:

["Rubble", "Oil", "Card"] | formatItems

will return:

[
  { text: "Rubble", value: "Rubble" },
  { text: "Oil", value: "Oil" },
  { text: "Card", value: "Card" },
]