nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -1,11 +1,11 @@
'use strict';
const PassThrough = require('stream').PassThrough;
const {PassThrough} = require('stream');
module.exports = opts => {
opts = Object.assign({}, opts);
module.exports = options => {
options = Object.assign({}, options);
const array = opts.array;
let encoding = opts.encoding;
const {array} = options;
let {encoding} = options;
const buffer = encoding === 'buffer';
let objectMode = false;