astro-ghostcms/.pnpm-store/v3/files/32/0bdaf7ac36711c7966cea3ca1f7...

14 lines
186 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
module.exports = header => {
switch (header) {
case ':method':
case ':scheme':
case ':authority':
case ':path':
return true;
default:
return false;
}
};