aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-03-09 16:16:02 -0700
committerMark Otto <[email protected]>2014-03-09 16:16:02 -0700
commit40ce6ca43182a067d40a8919e024dcc218b6c4cc (patch)
tree9299d8d63e067d21c9c7bb4104e1905f0bb8349d
parent488360562496fd3be1b647007b24679ab64390d2 (diff)
parent5f0c0c9ed1df991729beb85f482c781abef0c466 (diff)
downloadbootstrap-40ce6ca43182a067d40a8919e024dcc218b6c4cc.tar.xz
bootstrap-40ce6ca43182a067d40a8919e024dcc218b6c4cc.zip
Merge branch 'master' of github.com:twbs/bootstrap
-rw-r--r--grunt/shrinkwrap.js2
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;