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

Commit 9b8ef48

Browse files
hacdiasdaviddias
authored andcommitted
feat: normalize NAME API (#658)
1 parent 1b10821 commit 9b8ef48

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

src/name/publish.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@
22

33
const promisify = require('promisify-es6')
44

5+
const transform = function (res, callback) {
6+
callback(null, {
7+
name: res.Name,
8+
value: res.Value
9+
})
10+
}
11+
512
module.exports = (send) => {
613
return promisify((args, opts, callback) => {
714
if (typeof (opts) === 'function') {
815
callback = opts
916
opts = {}
1017
}
11-
send({
18+
19+
send.andTransform({
1220
path: 'name/publish',
1321
args: args,
1422
qs: opts
15-
}, callback)
23+
}, transform, callback)
1624
})
1725
}

src/name/resolve.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@
22

33
const promisify = require('promisify-es6')
44

5+
const transform = function (res, callback) {
6+
callback(null, res.Path)
7+
}
8+
59
module.exports = (send) => {
610
return promisify((args, opts, callback) => {
711
if (typeof (opts) === 'function') {
812
callback = opts
913
opts = {}
1014
}
11-
send({
15+
16+
send.andTransform({
1217
path: 'name/resolve',
1318
args: args,
1419
qs: opts
15-
}, callback)
20+
}, transform, callback)
1621
})
1722
}

0 commit comments

Comments
 (0)