From 0e75661b4b34e8d429063ca1fede342df0c91686 Mon Sep 17 00:00:00 2001 From: chen yuzhou Date: Tue, 4 Dec 2018 17:30:48 -0500 Subject: [PATCH] Remove fs.exists() console spam --- src/filesystem/implementation.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/filesystem/implementation.js b/src/filesystem/implementation.js index b9887a3..2ff55c6 100644 --- a/src/filesystem/implementation.js +++ b/src/filesystem/implementation.js @@ -1925,7 +1925,6 @@ function exists(fs, context, path, callback) { function cb(err) { callback(err ? false : true); } - console.warn('This method is deprecated. For more details see https://nodejs.org/api/fs.html#fs_fs_exists_path_callback');// eslint-disable-line no-console stat(fs, context, path, cb); }