We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef53c95 commit 2692dd2Copy full SHA for 2692dd2
lib/csscomb.js
@@ -31,7 +31,6 @@ Comb.prototype = {
31
configure: function(config) {
32
for (var option in config) {
33
if (config.hasOwnProperty(option) && config[option] && this._options[option]) {
34
- var handler;
35
try {
36
this._config[option] = require('./options/' + option).setValue(config[option]);
37
} catch (e) {}
lib/options/strip-spaces.js
@@ -9,7 +9,7 @@ module.exports = {
9
* @returns {Object}
10
*/
11
setValue: function(value) {
12
- this._value = !!value;
+ this._value = Boolean(value);
13
return this;
14
},
15
0 commit comments