Convert celsius to degrees farenheit

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.
export const make = (content) => {
  const f = (v) => (v / 5) * 9 + 32

  return content.replace(/\d+(\.\d+)?(°[FC]?)?/g, (raw) => {
    if (/°F/.test(raw)) return raw
    const v = f(parseFloat(raw))
    return Number.isNaN(v) ? raw : v.toFixed(1) + "°F"
  })
}