nodoku-core 0.3.0 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -64,7 +64,7 @@ function mergeObjectsRecursively_object(obj, defaultObj) {
64
64
  obj[key] = mergeObjectsRecursively_array(obj[key], defaultObj[key]);
65
65
  }
66
66
  else {
67
- obj[key] = (obj[key] && ("" + obj[key]).length > 0) ? obj[key] : defaultObj[key];
67
+ obj[key] = (obj[key] != undefined && ("" + obj[key]).length > 0) ? obj[key] : defaultObj[key];
68
68
  }
69
69
  }
70
70
  return obj;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodoku-core",
3
- "version": "0.3.0",
3
+ "version": "0.3.6",
4
4
  "description": "basic foundation for nodoku static site generator",
5
5
  "license": "MIT for the use not related to website builders, commercial otherwise, contact for details",
6
6
  "exports": {