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 c588565 commit 8c00dcaCopy full SHA for 8c00dca
lib/index.js
@@ -33,6 +33,6 @@ module.exports = (options) => {
33
34
function selectiveMerge (opts, optNames) {
35
return optNames.reduce((m, opt) => {
36
- if (opts[opt]) { m[opt] = opts[opt] }; return m
+ if (typeof opts[opt] !== 'undefined') { m[opt] = opts[opt] }; return m
37
}, {})
38
}
package.json
@@ -20,7 +20,7 @@
20
"nyc": "^8.1.0",
21
"rewire": "^2.5.2",
22
"snazzy": "^4.0.1",
23
- "standard": "^7.1.2"
+ "standard": "^8.0.0"
24
},
25
"engines": {
26
"node": ">= 6"
0 commit comments