UNPKG

372 BJavaScriptView Raw
1/*!
2 * gulp-format-md <https://github.com/jonschlinkert/gulp-format-md>
3 *
4 * Copyright (c) 2015, Jon Schlinkert.
5 * Licensed under the MIT License.
6 */
7'use strict';
8
9const through = require('through2');
10const middleware = require('./middleware');
11
12module.exports = config => {
13 let fn = middleware(config);
14 return through.obj((file, enc, next) => fn(file, next));
15};