diff --git a/packages/grpc-native-core/src/client.js b/packages/grpc-native-core/src/client.js index c37ff1eb..31a1738c 100644 --- a/packages/grpc-native-core/src/client.js +++ b/packages/grpc-native-core/src/client.js @@ -950,7 +950,7 @@ exports.makeClientConstructor = function(methods, serviceName, } ServiceClient.prototype.$method_names[attrs.path] = name; // Associate all provided attributes with the method - _.assign(ServiceClient.prototype[name], attrs); + Object.assign(ServiceClient.prototype[name], attrs); if (attrs.originalName) { ServiceClient.prototype[attrs.originalName] = ServiceClient.prototype[name];