File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
10
10
fail-fast : false
11
11
matrix :
12
12
node-version :
13
+ - 21
13
14
- 20
14
15
- 18
15
- - 16
16
16
steps :
17
- - uses : actions/checkout@v3
18
- - uses : actions/setup-node@v3
17
+ - uses : actions/checkout@v4
18
+ - uses : actions/setup-node@v4
19
19
with :
20
20
node-version : ${{ matrix.node-version }}
21
21
- run : npm install
Original file line number Diff line number Diff line change 16
16
"default" : " ./source/index.js"
17
17
},
18
18
"engines" : {
19
- "node" : " >=16 "
19
+ "node" : " >=18 "
20
20
},
21
21
"scripts" : {
22
22
"benchmark" : " node benchmarks/index.js" ,
43
43
" concat"
44
44
],
45
45
"devDependencies" : {
46
- "@types/node" : " ^20.5.0 " ,
46
+ "@types/node" : " ^20.8.9 " ,
47
47
"ava" : " ^5.3.1" ,
48
- "precise-now" : " ^2 .0.0" ,
48
+ "precise-now" : " ^3 .0.0" ,
49
49
"stream-json" : " ^1.8.0" ,
50
- "tsd" : " ^0.28.1 " ,
50
+ "tsd" : " ^0.29.0 " ,
51
51
"xo" : " ^0.56.0"
52
52
}
53
53
}
Original file line number Diff line number Diff line change 1
- import { Buffer , constants as BufferConstants , Blob } from 'node:buffer' ;
1
+ import { Buffer , constants as BufferConstants } from 'node:buffer' ;
2
2
import { arrayBuffer , blob } from 'node:stream/consumers' ;
3
3
import test from 'ava' ;
4
4
import { getStreamAsArrayBuffer , MaxBufferError } from '../source/index.js' ;
You can’t perform that action at this time.
0 commit comments