summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorBrendan Ashworth <brendan.ashworth@me.com>2015-08-26 14:41:28 -0700
committerBrendan Ashworth <brendan.ashworth@me.com>2015-09-14 19:58:04 -0700
commitc70c7781e3c231e18a9c9eafdddfff0c7471820a (patch)
tree8542b7ad5e56f862397d5dead08627c5b4e0f4e2 /node.gyp
parent7ec0491fd04767a8e6ab6277c7b58dc19f93cbf8 (diff)
downloadandroid-node-v8-c70c7781e3c231e18a9c9eafdddfff0c7471820a.tar.gz
android-node-v8-c70c7781e3c231e18a9c9eafdddfff0c7471820a.tar.bz2
android-node-v8-c70c7781e3c231e18a9c9eafdddfff0c7471820a.zip
streams: refactor LazyTransform to internal/
This commit refactors LazyTransform from the crypto implementation (lib/crypto.js) into an internal module (not publicy accessible) in internal/streams/lazy_transform.js. This promotes a more modular core design and removes code bloat in crypto, as LazyTransform didn't specifically have anything to do with cryptography, but rather a fast way to support two APIs on a stream. PR-URL: https://github.com/nodejs/node/pull/2566 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp1
1 files changed, 1 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 0bc27ae4f6..e7153ba1f9 100644
--- a/node.gyp
+++ b/node.gyp
@@ -73,6 +73,7 @@
'lib/internal/socket_list.js',
'lib/internal/repl.js',
'lib/internal/util.js',
+ 'lib/internal/streams/lazy_transform.js',
],
},