UNPKG

strata

Version:

A modular, streaming HTTP server

11 lines (8 loc) 183 B
module.exports = Section; function Section(name) { this.name = name; this.chapters = []; } Section.prototype.addChapter = function (chapter) { this.chapters.push(chapter); };