This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 2 files changed +7
-24
lines changed
2 files changed +7
-24
lines changed Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
3
const promisify = require ( 'promisify-es6' )
4
- const _ = require ( 'lodash' )
5
- const streamToValue = require ( '../utils/stream-to-value' )
6
4
7
5
const transform = function ( res , callback ) {
8
- return streamToValue ( res , ( err , data ) => {
9
- if ( err ) {
10
- return callback ( err )
11
- }
12
-
13
- callback ( null , {
14
- type : data [ 0 ] . Type ,
15
- blocks : data [ 0 ] . Blocks ,
16
- size : data [ 0 ] . Size ,
17
- hash : data [ 0 ] . Hash ,
18
- cumulativeSize : data [ 0 ] . CumulativeSize ,
19
- withLocality : data [ 0 ] . WithLocality || false ,
20
- local : data [ 0 ] . Local || null ,
21
- sizeLocal : data [ 0 ] . SizeLocal || null
22
- } )
6
+ callback ( null , {
7
+ type : res . Type ,
8
+ blocks : res . Blocks ,
9
+ size : res . Size ,
10
+ hash : res . Hash ,
11
+ cumulativeSize : res . CumulativeSize
23
12
} )
24
13
}
25
14
@@ -29,9 +18,6 @@ module.exports = (send) => {
29
18
callback = opts
30
19
opts = { }
31
20
}
32
-
33
- opts = _ . mapKeys ( opts , ( v , k ) => _ . kebabCase ( k ) )
34
-
35
21
send . andTransform ( {
36
22
path : 'files/stat' ,
37
23
args : args ,
Original file line number Diff line number Diff line change @@ -282,10 +282,7 @@ describe('.files (the MFS API part)', function () {
282
282
size : 12 ,
283
283
cumulativeSize : 20 ,
284
284
blocks : 0 ,
285
- type : 'file' ,
286
- withLocality : false ,
287
- local : undefined ,
288
- sizeLocal : undefined
285
+ type : 'file'
289
286
} )
290
287
291
288
done ( )
You can’t perform that action at this time.
0 commit comments