From: Zlatan Vasović Date: Sat, 8 Mar 2014 09:44:24 +0000 (+0100) Subject: Remove redundant parens X-Git-Tag: v3.2.0~392^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbec164a50c68e13ba8635fa3b5d7040d30ad1a2;p=thirdparty%2Fbootstrap.git Remove redundant parens --- diff --git a/grunt/shrinkwrap.js b/grunt/shrinkwrap.js index 6701c6d6c8..270fcb7b16 100644 --- a/grunt/shrinkwrap.js +++ b/grunt/shrinkwrap.js @@ -17,7 +17,7 @@ var DEST_FILE = 'test-infra/npm-shrinkwrap.canonical.json'; function cleanup(shrinkwrap) { // Remove `resolved` property to avoid irrelevant changes // See https://github.com/npm/npm/issues/3581 - if ((typeof shrinkwrap) === 'string') { + if (typeof shrinkwrap === 'string') { return shrinkwrap; } delete shrinkwrap.resolved;