UNPKG

course-renderer

Version:

Manages CA School Courses file system storage and HTML conversion

9 lines (6 loc) 202 B
const through = require('through2') module.exports = ( options: any ) => ( through.obj((file: any, i: any, cb: any) => { const ext = options.extensions file = ext(file) cb(null, file) }))