@onehat/data 1.22.43 → 1.22.44

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/data",
3
- "version": "1.22.43",
3
+ "version": "1.22.44",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -24,7 +24,7 @@ export default class Property extends EventEmitter {
24
24
  name: null,
25
25
 
26
26
  /**
27
- * @member {boolean} allowNull - Is the property required to have a value?
27
+ * @member {boolean} allowNull - Is the property allowed to NOT have a value?
28
28
  * Defaults to true.
29
29
  */
30
30
  allowNull: true,
@@ -33,7 +33,7 @@ class Formatters {
33
33
  static FormatBoolAsYesNo = (value) => {
34
34
  let ret;
35
35
  if (_.isNil(value)) {
36
- return 'No';
36
+ return 'N/A';
37
37
  } else if (_.isBoolean(value)) {
38
38
  ret = value ? 'Yes' : 'No';
39
39
  } else {