From c75f87cc4c8d3699e081d37bb5bf47a70d830fdb Mon Sep 17 00:00:00 2001 From: James M Snell Date: Wed, 6 Sep 2017 08:10:34 -0700 Subject: crypto: refactor the crypto module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Split single monolithic file into multiple * Make Certificate methods static * Allow randomFill(Sync) to use any ArrayBufferView * Use internal/errors throughout * Improve arg validation in Hash/Hmac * Doc updates PR-URL: https://github.com/nodejs/node/pull/15231 Reviewed-By: Michaƫl Zasso Reviewed-By: Fedor Indutny --- src/node_util.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'src/node_util.cc') diff --git a/src/node_util.cc b/src/node_util.cc index ab1f3c9f91..cf26eca692 100644 --- a/src/node_util.cc +++ b/src/node_util.cc @@ -19,6 +19,7 @@ using v8::Value; #define VALUE_METHOD_MAP(V) \ V(isArrayBuffer, IsArrayBuffer) \ + V(isArrayBufferView, IsArrayBufferView) \ V(isAsyncFunction, IsAsyncFunction) \ V(isDataView, IsDataView) \ V(isDate, IsDate) \ -- cgit v1.2.3