function isOpeningUrl()

in lib/identify-command-from-req.js [14:19]


function isOpeningUrl(req) {
  return {
    type: 'url',
    result: req.method === 'POST' && isSessionReq(req) && (/url\/?$/).test(req.path),
  };
}