You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2018/08/01 12:59:24 UTC

[thrift] branch master updated: THRIFT-4604: NodeJS add Int64 to exports for browserify (#1573)

This is an automated email from the ASF dual-hosted git repository.

jking pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git


The following commit(s) were added to refs/heads/master by this push:
     new fdd735e  THRIFT-4604: NodeJS add Int64 to exports for browserify (#1573)
fdd735e is described below

commit fdd735eec34d7ddd7a4a8821bc92a445c92db87c
Author: Kevin Greene <30...@users.noreply.github.com>
AuthorDate: Wed Aug 1 05:59:18 2018 -0700

    THRIFT-4604: NodeJS add Int64 to exports for browserify (#1573)
---
 lib/nodejs/lib/thrift/browser.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/nodejs/lib/thrift/browser.js b/lib/nodejs/lib/thrift/browser.js
index 4593a8f..67ce853 100644
--- a/lib/nodejs/lib/thrift/browser.js
+++ b/lib/nodejs/lib/thrift/browser.js
@@ -32,3 +32,5 @@ exports.TFramedTransport = require('./framed_transport');
 exports.Protocol = exports.TJSONProtocol = require('./json_protocol');
 exports.TBinaryProtocol = require('./binary_protocol');
 exports.TCompactProtocol = require('./compact_protocol');
+
+exports.Int64 = require('node-int64');