Add a libuv endpoint to the C core, for use in the Node library
diff --git a/src/node/index.js b/src/node/index.js
index 9fb6faa..a294aad 100644
--- a/src/node/index.js
+++ b/src/node/index.js
@@ -219,3 +219,7 @@
  * @see module:src/client.waitForClientReady
  */
 exports.waitForClientReady = client.waitForClientReady;
+
+exports.closeClient = function closeClient(client_obj) {
+  client.getClientChannel(client_obj).close();
+};