Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 3d4f19a

Browse files
committed
Revert "feat: add support for ipfs files stat --with-local (#695)"
This reverts commit b08f21a.
1 parent 1d762d0 commit 3d4f19a

File tree

2 files changed

+7
-24
lines changed

2 files changed

+7
-24
lines changed

src/files/stat.js

+6-20
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,14 @@
11
'use strict'
22

33
const promisify = require('promisify-es6')
4-
const _ = require('lodash')
5-
const streamToValue = require('../utils/stream-to-value')
64

75
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
2312
})
2413
}
2514

@@ -29,9 +18,6 @@ module.exports = (send) => {
2918
callback = opts
3019
opts = {}
3120
}
32-
33-
opts = _.mapKeys(opts, (v, k) => _.kebabCase(k))
34-
3521
send.andTransform({
3622
path: 'files/stat',
3723
args: args,

test/files.spec.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,7 @@ describe('.files (the MFS API part)', function () {
282282
size: 12,
283283
cumulativeSize: 20,
284284
blocks: 0,
285-
type: 'file',
286-
withLocality: false,
287-
local: undefined,
288-
sizeLocal: undefined
285+
type: 'file'
289286
})
290287

291288
done()

0 commit comments

Comments
 (0)