Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
module.exports = (req, res, next) => {
|
|
const isSafari = /^((?!chrome|android).)*safari/i.test(req.headers['user-agent'])
|
|
if (isSafari) {
|
|
res.header('Last-Modified', (new Date()).toUTCString())
|
|
}
|
|
next()
|
|
}
|