summaryrefslogtreecommitdiff
path: root/lib/domain.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-07-26 14:38:08 -0700
committerisaacs <i@izs.me>2013-08-01 15:08:01 -0700
commit22c68fdc1dae40f0ed9c71a02f66e5b2c6353691 (patch)
treeb6d14cad6f5a9ba78172f77c5c2ec10b8a6cb89c /lib/domain.js
parent9a29aa8c552eb2b120c101c1cfd66ba565a17ed5 (diff)
downloadandroid-node-v8-22c68fdc1dae40f0ed9c71a02f66e5b2c6353691.tar.gz
android-node-v8-22c68fdc1dae40f0ed9c71a02f66e5b2c6353691.tar.bz2
android-node-v8-22c68fdc1dae40f0ed9c71a02f66e5b2c6353691.zip
src: Replace macros with util functions
Diffstat (limited to 'lib/domain.js')
-rw-r--r--lib/domain.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/domain.js b/lib/domain.js
index 364d8c7d4a..ac02f455e1 100644
--- a/lib/domain.js
+++ b/lib/domain.js
@@ -219,7 +219,7 @@ Domain.prototype.dispose = function() {
// so it's quite possible that calling some of these methods
// might cause additional exceptions to be thrown.
endMethods.forEach(function(method) {
- if (IS_FUNCTION(m[method])) {
+ if (util.isFunction(m[method])) {
try {
m[method]();
} catch (er) {}