Convert to title case

Convert your text to use title case, while skipping over short words.

Face with waiting expression Nothing to see yet!

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
({
  take: [
    { type: "list" },
    {
      type: "import",
      value: "https://cdn.skypack.dev/title-case@~3.0.3?min",
      module: true,
    },
  ],
  make: ([data, { titleCase }]) => data.map(titleCase),
})