nav tabs on admin dashboard
This commit is contained in:
10
node_modules/get-stream/buffer-stream.js
generated
vendored
10
node_modules/get-stream/buffer-stream.js
generated
vendored
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user