neo.mjs 4.0.68 → 4.0.69

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": "neo.mjs",
3
- "version": "4.0.68",
3
+ "version": "4.0.69",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -270,6 +270,11 @@ class RecordFactory extends Base {
270
270
  return new Date(value);
271
271
  }
272
272
 
273
+ if (type === 'string' && value !== null) {
274
+ value = value + '';
275
+ value = value.replace(/(<([^>]+)>)/ig, '');
276
+ }
277
+
273
278
  return value;
274
279
  }
275
280