How to use the ieNoOpen function from helmet

Find comprehensive JavaScript helmet.ieNoOpen code examples handpicked from public code repositorys.

1
2
3
4
5
6
7
8
9

const helmet = require('helmet')

exports.dnsPreFetchControl = helmet.dnsPrefetchControl()
exports.frameGuard = helmet.frameguard()
exports.ieNoOpen = helmet.ieNoOpen()
exports.noSniff = helmet.noSniff()
exports.xssFilter = helmet.xssFilter()
exports.referrerPolicy = helmet.referrerPolicy({ policy: 'same-origin' })
fork icon1
star icon2
watch icon3