diff options
| author | XhmikosR <[email protected]> | 2014-03-10 01:15:52 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2014-03-10 01:15:52 +0200 |
| commit | 5f0c0c9ed1df991729beb85f482c781abef0c466 (patch) | |
| tree | 24012f94ee3d0e8cd74b78af734ecba3668ae6b6 | |
| parent | b263a0197be84f4018c124b738e07e35c42d493f (diff) | |
| parent | cbec164a50c68e13ba8635fa3b5d7040d30ad1a2 (diff) | |
| download | bootstrap-5f0c0c9ed1df991729beb85f482c781abef0c466.tar.xz bootstrap-5f0c0c9ed1df991729beb85f482c781abef0c466.zip | |
Merge pull request #12975 from ZDroid/parens
Remove redundant parens
| -rw-r--r-- | grunt/shrinkwrap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grunt/shrinkwrap.js b/grunt/shrinkwrap.js index 6701c6d6c..270fcb7b1 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; |
