Colon(:) used to define route param in Express/Koa.
app.get('/users/:userId/books/:bookId', function (req, res) {
res.send(req.params)
})
Google API design use colon as custom verb

Question: Is there a way to define a route in which I want use colon as normal character ?
Target: define a route that match PUT /tasks/1234:undelete
, and define with string instead of regexp.