UNPKG
nntp-server
Version:
latest (3.1.0)
3.1.0
3.0.0
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
NNTP server implementation.
github.com/nodeca/nntp-server
nodeca/nntp-server
nntp-server
/
lib
/
commands
/
xhdr.js
14 lines
(11 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Alias for HDR
//
// Actually, ALL clients still use XHDR instead of HDR.
//
'use strict'
;
const
hdr =
require
(
'./hdr'
);
module
.
exports
= {
head
:
'XHDR'
,
validate
: hdr.
validate
,
run
: hdr.
run
};