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
/
xover.js
14 lines
(11 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Alias for OVER
//
// Actually, ALL clients still use XOVER instead of OVER.
//
'use strict'
;
const
over =
require
(
'./over'
);
module
.
exports
= {
head
:
'XOVER'
,
validate
: over.
validate
,
run
: over.
run
};