From f37316576756cb8eff38ab8c6cb2646c806310a7 Mon Sep 17 00:00:00 2001 From: Wyatt Preul Date: Mon, 24 Aug 2015 16:40:38 -0500 Subject: [PATCH] util: Remove p, has been deprecated for years --- lib/util.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/util.js b/lib/util.js index c5d7bea7db352d..a911bdec8b3153 100644 --- a/lib/util.js +++ b/lib/util.js @@ -753,13 +753,6 @@ function hasOwnProperty(obj, prop) { // Deprecated old stuff. -exports.p = internalUtil.deprecate(function() { - for (var i = 0, len = arguments.length; i < len; ++i) { - console.error(exports.inspect(arguments[i])); - } -}, 'util.p is deprecated. Use console.error instead.'); - - exports.exec = internalUtil.deprecate(function() { return require('child_process').exec.apply(this, arguments); }, 'util.exec is deprecated. Use child_process.exec instead.');