aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/src/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/src/common.js')
-rw-r--r--src/node/src/common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/src/common.js b/src/node/src/common.js
index 22159dd39f..c6c6d597a8 100644
--- a/src/node/src/common.js
+++ b/src/node/src/common.js
@@ -141,7 +141,7 @@ exports.getProtobufServiceAttrs = function getProtobufServiceAttrs(service,
binaryAsBase64 = options.binaryAsBase64;
longsAsStrings = options.longsAsStrings;
}
- return _.object(_.map(service.children, function(method) {
+ return _.fromPairs(_.map(service.children, function(method) {
return [_.camelCase(method.name), {
path: prefix + method.name,
requestStream: method.requestStream,