Skip to content

Instantly share code, notes, and snippets.

@mykeels
Created April 6, 2018 15:34
Show Gist options
  • Save mykeels/d4fd23aa538ce5f0c0f3a7e7c9f28c52 to your computer and use it in GitHub Desktop.
Save mykeels/d4fd23aa538ce5f0c0f3a7e7c9f28c52 to your computer and use it in GitHub Desktop.
const storage = {}
app.post('/', textBodyParser, (req, res) => {
storage[req.hash] = storage[req.hash] || req.body.split('\n').map((line) => line.split('').reverse().join('')).join('\n')
res.send(storage[req.hash])
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment