UNPKG

motion

Version:

motion - moving development forward

14 lines (11 loc) 282 B
var url = require("url") module.exports = function(req, next){ req.ssl = null var u = url.parse(req.domain) if (u.protocol !== null) { if (u.protocol == "https:") req.ssl = true if (u.protocol == "http:") req.ssl = false req.domain = u.hostname } next() }