From 92e0f38a657886dcc1882bb3d85cb98165bb3fd5 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Fri, 24 Aug 2018 02:13:55 +0200 Subject: [PATCH] util: remove outdated TODO Backport-PR-URL: https://github.com/nodejs/node/pull/23039 PR-URL: https://github.com/nodejs/node/pull/22503 Reviewed-By: Matteo Collina Reviewed-By: John-David Dalton Reviewed-By: Benjamin Gruenbaum Reviewed-By: Refael Ackermann --- lib/util.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/util.js b/lib/util.js index 94bde6e65ee055..09e60a76366b39 100644 --- a/lib/util.js +++ b/lib/util.js @@ -380,8 +380,6 @@ Object.defineProperty(inspect, 'defaultOptions', { if (options === null || typeof options !== 'object') { throw new ERR_INVALID_ARG_TYPE('options', 'Object', options); } - // TODO(BridgeAR): Add input validation and make sure `defaultOptions` are - // not configurable. return _extend(inspectDefaultOptions, options); } });