UNPKG

nntp-server

Version:
21 lines (15 loc) 269 B
// https://tools.ietf.org/html/rfc3977#section-7.2 // 'use strict'; const status = require('../status'); module.exports = { head: 'HELP', validate: /^HELP$/i, pipeline: true, run() { return [ status._100_HELP_FOLLOWS, '.' ]; } };