diff options
author | cjihrig <cjihrig@gmail.com> | 2017-04-20 13:49:56 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2017-04-25 12:25:55 -0400 |
commit | e522bcd774c6a43d8facc1905b59e53a86f7ae0a (patch) | |
tree | 8fbcfaa89598a3fe1cc19e4e6a95398b0e284211 /src/node_util.cc | |
parent | 9d3c06ca1e5b8991741eb04d4c728aed7a7c6ab9 (diff) | |
download | node-new-e522bcd774c6a43d8facc1905b59e53a86f7ae0a.tar.gz |
src: expose V8's IsNativeError() in util bindings
Refs: https://github.com/nodejs/node/pull/12400
PR-URL: https://github.com/nodejs/node/pull/12546
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_util.cc')
-rw-r--r-- | src/node_util.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_util.cc b/src/node_util.cc index a615aa88fd..5f3de643d4 100644 --- a/src/node_util.cc +++ b/src/node_util.cc @@ -25,6 +25,7 @@ using v8::Value; V(isExternal, IsExternal) \ V(isMap, IsMap) \ V(isMapIterator, IsMapIterator) \ + V(isNativeError, IsNativeError) \ V(isPromise, IsPromise) \ V(isRegExp, IsRegExp) \ V(isSet, IsSet) \ |