Skip to content

Commit 6927fd3

Browse files
committed
1 parent 3eec56e commit 6927fd3

File tree

9 files changed

+1520
-12
lines changed

9 files changed

+1520
-12
lines changed

node_modules/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@
123123
!/events
124124
!/fastest-levenshtein
125125
!/fs-minipass
126+
!/fs-minipass/node_modules/
127+
/fs-minipass/node_modules/*
128+
!/fs-minipass/node_modules/minipass
126129
!/fs.realpath
127130
!/function-bind
128131
!/gauge

node_modules/fs-minipass/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict'
2-
const MiniPass = require('minipass')
2+
const { Minipass } = require('minipass')
33
const EE = require('events').EventEmitter
44
const fs = require('fs')
55

@@ -34,7 +34,7 @@ const _writing = Symbol('_writing')
3434
const _defaultFlag = Symbol('_defaultFlag')
3535
const _errored = Symbol('_errored')
3636

37-
class ReadStream extends MiniPass {
37+
class ReadStream extends Minipass {
3838
constructor (path, opt) {
3939
opt = opt || {}
4040
super(opt)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)